@charset "utf-8";

:root {
	--width: 640px;
}

html,
body {
	height: 100%;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background-image: radial-gradient(50% 80%, #fff 9%, #cbd5de 82%);
}

/* helper */

.h-container {
	max-width: var(--width);
	padding: 1rem;
	box-sizing: border-box;
}

.h-mx-auto {
	margin-left: auto;
	margin-right: auto;
}

/* layout */

.header {
	padding: 3rem 2rem;
	text-align: center;
	background-color: #e8eef4;
	border-bottom: solid 1px #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1) inset;
}

.header__title {
	font-size: 5rem;
	font-weight: 700;
	color: rgba(0, 0, 0, .4);
	text-shadow: 1px 1px #fff;
}

.section + .section {
	margin-top: 1.5rem;
}

.section__title,
.section__description {
	color: rgba(0, 0, 0, .35);
	text-shadow: 1px 1px #fff;
	line-height: 1.7;
}

.section__title {
	font-weight: 600;
	font-size: 1.5rem;
}

.nav-ul {
	display: flex;
}

.nav-li {
	position: relative;
	width: 100%;
}

.nav-li > .nav-link {
	text-align: center;
}

.nav-link {
	display: block;
	padding: 10px;
	color: #fff;
	text-decoration: none;
	background-color: #1ab394;
}

.nav-link:hover {
	background-color: #23d4b0;
}

.nav-li ul {
	display: none;
	position: absolute;
	top: 100%;
	width: max-content;
}

.content__title,
.content__description {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.content__title {
	font-size: 2rem;
	text-transform: capitalize;
}

.content__description {
	line-height: 1.5;
	text-align: justify;
}