@import url("https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,700;1,6..72,400;1,6..72,500;1,6..72,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,700;1,6..72,400;1,6..72,500;1,6..72,700&display=swap");

:root {
	--desktop-padding: 20px;
	--mobile-padding: 1.25rem;
	--tablet-padding: 4rem;
}

* {
	margin: 0;
	box-sizing: border-box;
	padding: 0;
	font-family: Helvetica, Arial, sans-serif, "Inter";
	color: #f7f7f7;
}

button {
	cursor: pointer;
}

body {
	background-color: #0a0a0a;
	background-image: url("./images/Home\ -\ 9.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
}

a {
	opacity: 0.6;
	text-decoration: none;
	transition: all 300ms ease-in-out;
}

a:hover {
	opacity: 1;
}

nav>span>button {
	display: none;
	border: none;
	outline: none;
	background-color: transparent;
}

nav>span {
	font-size: 14px;
	position: fixed;
	top: 20px;
	left: 20px;
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

nav ul {
	display: block;
	position: fixed;
	left: 20px;
	bottom: 20px;
}

nav ul li {
	list-style: none;
	padding-top: 1rem;
}

nav ul li a {
	font-size: 0.875rem !important;
}

.links {
	position: fixed;
	top: 20px;
	right: 20px;
	display: flex;
	gap: 1rem;
	width: fit-content;
}

.links a {
	height: fit-content;
}

.close{
	display: none;
}

@media screen and (max-width: 800px) {
	body {
		background-size: cover;
		background-attachment: fixed;
		background-position: top;
	}

	.links {
		position: absolute;
	}

	nav>span>button {
		display: block;
	}

	nav>ul {
		display: none !important;
		position: fixed !important;
		bottom: 0;
		left: 0;
		background-color: #fff;
		z-index: 2;
		width: 100%;
		border-radius: 1rem 1rem 0 0;
		padding: 0.75rem 0;
		padding-bottom: 0.0;
	}

	nav ul li {
		padding: 0;
	}

	nav ul li a {
		opacity: 1;
		color: #000;
		font-size: 1.25rem !important;
		font-weight: bold;
		width: 100%;
		display: block;
		padding: 1rem 1.25rem;
	}

	.close {
		opacity: 0.5;
		display: inline-flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: center;
	}
}