html {
	font-family: 'Inter', 'Arial', sans-serif;
	font-weight: 300;
	background-color: #006eb1;
	background-image: url('../img/bg-img.svg');
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: right top;
	height: 100%;
	color: #ffffff;
	font-size: 1em;
	line-height: 1.4;
}
a {
	color: #ffffff;
	text-decoration: none;
}
a:hover {
	color: #00c2e4;
	text-decoration: underline;
}

.logo-top {
	padding: 2.5em 0 0 3em;
	width: 25%;
}

b, strong, h1 {
	font-weight: 600;
}
.container {
	 display: flex;
	 flex-direction: row;
	 height: 100%;
}
.main-text-container {
	width: 50%;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.main-text {
	margin: 0;
	align-self: center;
}
.box-text {
	margin-bottom: 50px;
}
.box-text h1 {
	font-size: 2.1em;
}
.box-text-content h3{
	font-size: 1.3em;
}
.box-text-content-link {
	padding: 10px 0 10px 20px;
}
.box-text-content-link a {
	font-style: italic;
	text-decoration: underline;
}
.box-text:nth-child(3) .box-text-content-link {
	padding: 10px 0 10px 0;
}
@media (max-width: 768px) { 
	.container {
		flex-direction: column;
	}
	.logo-top {
		padding: 2.5em 0 4em 2em;
		width: 100%;
	}
	.main-text-container {
		width: 100%;
		height: 50%;
	}
	.main-text {
		padding: 2em 1em 2em 2em;
	 }
 }