body{
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	background-color: #f1f1f1;
	margin: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
}

content{
	background-color: white;
	width: 80%;
	height: fit-content;
	min-height: 100vh;
}

header{
	height: 26vw;
}

header img{
	width: 100%;
	height: auto;
}

header h1{
	position: relative;
	top: -7vw;
	font-size: 5vw;
	margin-left: 40px;
	color: white;
	background-color: #33cbcc;
	border-radius: 10px;
	padding: 10px;
	width: fit-content;
	height: fit-content;
}

.info{
	margin-top: 2vw;
	margin-inline: 40px;

	h2{
		text-decoration: underline;
	}

	strong{
		text-decoration: underline;
	}
}


@media screen and (max-width: 600px) {
	content{
		width: 100%;
	}

	.info{
		margin-top: 12vw;
	}
}