@font-face {
	font-family: "lilita one";
	src: url("./fonts/Lilita_One/LilitaOne-Regular.ttf");
}

@font-face {
	font-family: "roboto";
	src: url("./fonts/Roboto/Roboto-VariableFont_wdth\,wght.ttf");
}


html, body {
	padding: 0;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
}

body {
	margin: 25px 0;
}

* {
	box-sizing: border-box;
	font-family: "roboto", sans-serif;
	transition: all 0.5s ease-in-out;
}

p {
	margin: 0;
}

body {
	background-image: url("./background.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position-x: 73%;
}

h1 {
	font-family: "lilita one", sans-serif;
	font-size: 11rem;
	margin: 0;
}

.subtitle {
	font-family: "lilita one", sans-serif;
	font-size: 3rem;
}

.inner {
	display: flex;
	align-items: center;
	flex-direction: column;
	box-sizing: border-box;

	margin: 0;
	margin-left: 100px;
	width: 40rem;
	height: auto;
	gap: 32px;
}

svg {
	width: 75px;
	height: 75px;
	fill: #4E009C;
}

.link-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;

	a {
		border-radius: 999px;
		background-color: white;
		color: #4E009C;
		padding: 12px;

		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
		width: 100%;
	}
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wrapped-image {
	display: grid;
	grid-template-columns: auto min-content;

	background-color: #101010a1;
	border-radius: 8px;
	padding: 8px;
	color: white;
}

.video-wrapper {
	width: 100%;

	max-width: 560px;
	max-height: 315px;

	aspect-ratio: 560 / 315;
	position: relative;

	iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}

@media (max-width: 800px) {
	body {
		display: flex;
		justify-content: center;
	}

	.inner {
		margin: 0 25px;
	}

	svg {
		width: 50px;
		height: 50px;
	}

	h1 {
		font-size: 4rem;
	}

	.subtitle {
		font-size: 2rem;
	}
}
