:root {

	--fregular: 400;
	--fbold: 700;
}

body {
	font-family: "Exo", sans-serif;
	font-weight: var(--fbold);
	font-size: 1em;
	background-color: #fff;
	display: none;
	margin: 0;
}

.container {
	margin: 1.5em 15%;
	background-color: rgba(255, 147, 152, 0.3);
	font-weight: var(--fregular);
	border-radius: 0.5em;
	padding: 1.2em 1.2em;
}

/* ------------------------------- */
/* SECTION START */

.section {
	width: 100%;
	height: auto;
	/*height: 8em;*/
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.section-main {
	width: 60%;
	height: auto;
}

.section-main>p {
	margin-block-start: 0;
}

/*.center {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2em;
	margin-bottom: 0.2em;
}*/

hr {
	border: none;
	height: 0.05em;
	background: #000;
	margin: 1em auto;
}

.item {
	width: 100%;
	height: auto;
}

a.item, a.item:link, a.item:hover, a.item:visited, a.item:active {
	color: black;
	text-decoration: none;
	font-weight: var(--fregular);
}

a.item:hover {
	text-decoration: underline;
}

.item-title {
	width: 80%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: var(--fbold);
	cursor: pointer;
}

.item-description {
	width: 100%;
	height: auto;
	cursor: pointer;
}

footer {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 3em;
	background-color: #274EA7;
	font-weight: var(--fregular);
	color: white;
}