@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap');
:root {
	--accent-color: #f5eb5e;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
}
h1,
h2,
h3 {
	/* color: var(--accent-color); */
	text-align: center;
}
html {
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Lato', sans-serif;
	background: #141414;
	color: white;
	padding: 2rem;
	background-color: rgb(80, 80, 80);
	background-image: linear-gradient(45deg, rgb(70, 70, 70) 25%, transparent 25%, transparent 75%, rgb(70, 70, 70) 75%, rgb(70, 70, 70)),
		linear-gradient(45deg, rgb(70, 70, 70) 25%, transparent 25%, transparent 75%, rgb(70, 70, 70) 75%, rgb(70, 70, 70));
	background-size: 40px 40px;
	background-position: 0 0, 20px 20px;
}
main {
	background: #141414;
	backdrop-filter: blur(1px);
	width: 80%;
	margin: auto;
	border-radius: 0.625rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.3);
}
h2 {
	margin: 2rem;
	font-size: 2rem;
	font-weight: 900;
	color: var(--accent-color);
}
h2 span {
	display: inline-block;
	opacity: 1;
	transform: translateY(0);
	transition: transform 0.3s ease-out, opacity 0.3s;
	transition-delay: 0.5s;
}

h2.notVisible span {
	opacity: 0;
	transform: translateY(10rem);
}
li {
	margin: 1rem;
}
img {
	max-width: 100%;
	opacity: 1;
	transition: opacity 1s;
}
img.notVisible {
	opacity: 0;
}
.flex {
	display: flex;
}
.column {
	flex: 50%;
	display: grid;
	place-items: center;
	padding: 1rem;
}
@media screen AND (max-width: 768px) {
	.flex {
		flex-direction: column;
	}
	.column {
		flex: 100%;
	}
	figure {
		order: 1;
	}
}
.decimal {
	list-style: none;
	counter-reset: li;
}
.decimal li::before {
	content: counter(li);
	color: var(--accent-color);
	font-weight: 900;
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}
.decimal li {
	counter-increment: li;
}
.icone {
	filter: invert(1);
	max-width: 1rem;
	margin: 0 0.25rem;
	line-height: 1rem;
	vertical-align: middle;
}
.simple-list {
	list-style: none;
}
