@import url('https://fonts.googleapis.com/css2?family=Galindo&family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap');

* {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	color: #000;
	/* background-color: #ece3d4; */
	background-color: #EDEEDF;
}

.content {
	height: 300px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.content__title {
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	color: rgb(94, 93, 93);
	z-index: 10000;
	font-size: 60px;
	font-weight: 900;
	letter-spacing: 50px;
}
img {
	width: 200px;
	height: 280px;
	background-size: cover;
	background-position: center center;
	object-fit: cover;
	border-radius: 5px;
}
.content__img {
	max-width: 200px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

@media screen and (min-width: 50em) {
	body {
		overflow: hidden;
	}
	.content {
		height: 100vh;
		overflow: hidden;
	}
}