
:root {
	--red: #fd0618;
	--blue: #01aae5;
	--grey: #dddfe1;
	--transition: all .7s ease;
}

.barlow-light {
	font-family: "Barlow", sans-serif;
	font-weight: 300;
	font-style: normal;
}

.barlow-regular {
	font-family: "Barlow", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.barlow-semibold {
	font-family: "Barlow", sans-serif;
	font-weight: 600;
	font-style: normal;
}

.barlow-light-italic {
	font-family: "Barlow", sans-serif;
	font-weight: 300;
	font-style: italic;
}

.barlow-regular-italic {
	font-family: "Barlow", sans-serif;
	font-weight: 400;
	font-style: italic;
}

.barlow-semibold-italic {
	font-family: "Barlow", sans-serif;
	font-weight: 600;
	font-style: italic;
}

a:link,
a:visited {
	color: var(--red);
	transition: var(--transition);
}

/* mouse over link */
a:hover {
	color: var(--blue);
	transition: var(--transition);
}

/* selected link */
a:active {
	color: var(--blue);
}



body {
	background-color: #9e9e9e;
	font-family: "Barlow", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
}

.page-container {
	max-width: 80%;
	margin: auto;
	background-color: #ffffff;
}

main {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 0px;
}

.header-top {
	height: 100px;
	background: #01AAE5;
	background: linear-gradient(180deg, rgba(1, 170, 229, 1) 0%, rgba(255, 255, 255, 1) 70%, rgba(253, 6, 24, 1) 100%);
}

h1 {
	text-transform: uppercase;
	font-size: 30px;
	font-weight: normal;
}

h2 {
	text-transform: uppercase;
	font-size: 20px;
	font-weight: bold;
	color: var(--blue);
}

p {
	text-align: justify;
	margin: 0 0 20px 0;
}

.desc {
	margin: 20px;
	font-size: 20px;
}

.grey-box{
	background: var(--grey);
	margin: 20px;
	padding: 10px;
}

.flex {
	display: flex;
	flex-direction: row;
	margin: 20px;
}

.flex-container {
	width: 100%;
	display: inline-flex;
	justify-content: space-around;
}

.nojustify {
	text-align: left;
}

footer {
	padding: 20px;
}

@media only screen and (max-width: 1000px ) {
	main {
		grid-template-columns: repeat(1, 1fr);
	}
	.flex {
		flex-direction: column;
		align-items: center;
	}
}