@import url("https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap");
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	font-family: "Atkinson Hyperlegible", sans-serif;
	background-color: #f4f2ee;
	background-image: url("../img/7019e0b6e37b1e144f4970dc651bcf64.jpg");
	background-size: cover;
	background-position: -180px -30px;
	background-repeat: no-repeat;
	height: 100dvh;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.container {
	width: 100%;
	text-align: center;
	margin: 20px;
}
h1 {
	font-size: 3rem;
	color: #333;
	margin-bottom: 20px;
}
p {
	font-size: 1.6rem;
	text-align: justify;
}

p span {
	margin: 16px 0;
	font-weight: bold;
	display: inline-block;
}

.content,
.img-container img {
	opacity: 0;
	visibility: hidden;
}

img {
	width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: 12px;
}

.img-container {
	position: relative;
}

img.left {
	position: absolute;
	top: -200px;
	left: 0px;
	transform: rotate(-2deg);
}

img.right {
	position: absolute;
	top: 320px;
	right: 0px;
	transform: rotate(2deg);
}

@media (max-width: 430px) {
	body {
		height: 100svh;
		padding-top: calc(env(safe-area-inset-top) + 24px);
		padding-bottom: calc(env(safe-area-inset-bottom) + 16px);
	}

	.container {
		margin: 0 16px;
	}

	p {
		font-size: 1.8rem;
		line-height: 1.6;
	}
}
