/* 
	Animation
*/
@keyframes fade-in {
	to {
		opacity: 1;
		translate: 0 0;
	}
}
/* 
	Resets
 */
*,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a {
	color: inherit;
	text-decoration: none;
}

/* 
	Styles 
*/
body {
	position: relative;
	background-color: black;
	color: white;
	font-family: 'ivypresto-headline', serif;
	line-height: 1.4;
	background-image: url('background.jpg');
	background-position: 0% 43%;
	background-repeat: no-repeat;
	background-size: cover;
}

body::after {
	content: '';
	background-color: rgba(0, 0, 0, 0.485);
	z-index: -1;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.logo {
	max-width: 130px;
	@media (width < 550px) {
		max-width: 110px;
	}
}

h1 {
	position: absolute;
	inset: 0;
	margin: auto;
	width: fit-content;
	height: fit-content;
	font-size: 96px;
	font-style: normal;
	font-weight: 100;
	opacity: 0;
	translate: 0 20px;
	animation-name: fade-in;
	animation-delay: 0.8s;
	animation-duration: 400ms;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
	@media (width < 767px) {
		font-size: 76px;
	}
	@media (width < 550px) {
		font-size: 56px;
	}
}
.content {
	padding-block: 70px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	@media (width < 550px) {
		padding-block: 50px;
	}
}

.bottom {
	display: grid;
	gap: 60px;
}

.info {
	display: flex;
	flex-direction: column;
}

.info li {
	--d: calc(sibling-index() * 400ms);
	font-size: 40px;
	font-style: normal;
	font-weight: 100;
	text-align: center;
	opacity: 0;
	translate: 0 10px;
	animation-name: fade-in;
	animation-delay: 1.2s;
	animation-duration: var(--d, 400ms);
	animation-timing-function: linear;
	animation-fill-mode: forwards;
	@media (width < 767px) {
		font-size: 34px;
	}
	@media (width < 550px) {
		font-size: 24px;
	}
}

/* .socials {
	display: flex;
	gap: 3ch;
	align-items: center;
	justify-content: center;
} */

/* 
	Utilities
 */
.wrapper {
	width: min(100% - 2rem, 1240px);
	margin-inline: auto;
}

.list-none {
	list-style: none;
}

.text-uppercase {
	text-transform: uppercase;
}
