*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #000000;
	color: #f5f5f5;
	cursor: none;
	overflow: hidden;
}

.text-center {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	width: 100%;
	padding: 2rem;
	text-align: center;
}

h1 {
	font-family: "roc-grotesk-wide", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 3rem;
	line-height: 0.8;
	text-transform: uppercase;
	color: #dafd00;
}

@media (min-width: 768px) {
	h1 {
		font-size: 4rem;
	}
}

h2 {
	font-family: "roc-grotesk", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.5rem;
}

@media (min-width: 768px) {
	h2 {
		font-size: 2rem;
	}
}

h3 {
	font-family: "masqualero", sans-serif;
	font-weight: 400;
	font-style: italic;
	font-size: 2rem;
}

@media (min-width: 768px) {
	h3 {
		font-size: 2.5rem;
	}
}

a {
	display: inline-block;
	margin-top: 1rem;
	padding: 1rem 2rem;
	font-family: "roc-grotesk", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 1.5rem;
	text-decoration: none;
	text-transform: uppercase;
	background-color: #dafd00;
	color: #000000;
	border-radius: 50px;
	transition: transform 0.3s ease-out, background-color 0.3s ease-out, color 0.3s ease-out, border 0.3s ease-out;
	cursor: none;
}

@media (min-width: 768px) {
	a {
		font-size: 1.5rem;
	}
}

a:hover {
	background-color: #000000;
	outline: 2px solid #dafd00;
	outline-offset: -2px;
	color: #dafd00;
}

.custom-cursor {
	background-color: #000000;
}

@media (min-width: 768px) {
	.custom-cursor {
		position: fixed;
		top: 50px;
		left: 50px;
		width: 50px;
		height: 50px;
		background-color: #f5f5f5;
		border-radius: 50%;
		mix-blend-mode: difference;
		pointer-events: none;
		z-index: 9999;
		transform: translate(-50%, -50%);
		transition: transform 0.2s ease-out;
		will-change: transform;
	}
}
