@font-face {
	font-family: alpha;
	src: url(./fonts/HelveticaNeueLight.otf);
}

html {
	scroll-behavior: smooth;
}

a,
button,
input,
textarea {
	cursor: url("./images/cursor-hover.png"), auto !important;
}

#navbar {
	position: fixed;
	top: 0;
	width: 100%;
	font-size: 2rem;
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 10;
}

#links {
	margin: 0;
	padding-left: 2 rem;
	display: flex;
	align-items: center;
}

#navbar a {
	text-decoration: none;
	color: white;
	margin: 1rem;
}

#navbar ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

#navbar li {
	float: left;
}

#navbar #logo {
	height: 5vw;
	margin-right: 1rem;
	margin-left: 2rem;
	margin-top: 1rem;
}

.social-media-links {
	display: flex;
	align-items: center;
}

.social-media-links a {
	transition: transform 0.2s ease-in-out;
}

.social-media-links a:hover {
	transform: scale(1.1) rotate(10deg);
}

.social-media-links img {
	width: 2vw;
	height: 2vw;
	padding: 0.5rem;
	margin-top: 0.5rem;
	border-radius: 1rem;
	border: 2px solid white;
}

body {
	font-family: "alpha", sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: #37bcda;
	cursor: url("./images/cursor.png"), auto !important;
	overflow-x: hidden;
}

section {
	height: 100vh;
	width: 100%;
}

#hero-container {
	display: flex;
	justify-content: center;
	align-items: center;
	/* background: url("./images/background.png");
	background-repeat: no-repeat;
	background-size: cover; */
	background-color: #37bcda;
	overflow: hidden;
}

#roadmap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#roadmap h1 {
	font-size: 4rem;
	color: white;
	text-align: center;
	margin: 0;
}

#tokenomics {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#tokenomics h1 {
	font-size: 4rem;
	color: white;
	text-align: center;
	margin: 0;
}

#tokenomics p {
	font-size: 2.5rem;
	width: 50vw;
	color: white;
	text-align: center;
	margin: 0;
	margin-top: 1rem;
	margin-bottom: 2rem;
}

#tokenomics-content {
	display: flex;
	align-items: center;
	justify-content: center;
}

#tokenomics-content .button {
	display: inline-block;
	padding: 1rem 0;
	background-color: #37bcda;
	color: white;
	border: white 2px solid;
	text-align: center;
	text-decoration: none;
	font-size: 2rem;
	width: 20vw;
	border-radius: 1rem;
	margin-top: 1rem;
	transition: transform 0.2s ease-in-out;
	animation: jitter 0.5s infinite;
}

@keyframes jitter {
	0% {
		transform: translate(1px, 1px) rotate(0deg);
	}
	10% {
		transform: translate(-1px, -2px) rotate(-1deg);
	}
	20% {
		transform: translate(-3px, 0px) rotate(1deg);
	}
	30% {
		transform: translate(3px, 2px) rotate(0deg);
	}
	40% {
		transform: translate(1px, -1px) rotate(1deg);
	}
	50% {
		transform: translate(-1px, 2px) rotate(-1deg);
	}
	60% {
		transform: translate(-3px, 1px) rotate(0deg);
	}
	70% {
		transform: translate(3px, 1px) rotate(-1deg);
	}
	80% {
		transform: translate(-1px, -1px) rotate(1deg);
	}
	90% {
		transform: translate(1px, 2px) rotate(0deg);
	}
	100% {
		transform: translate(1px, -2px) rotate(-1deg);
	}
}

#tokenomics-content .button:hover {
	transform: scale(1.1);
}

#tokenomics img {
	width: 30vw;
	height: auto;
}

.token-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 20vw;
	height: 100%;
	background-color: white;
	border-radius: 1rem;
	text-decoration: none;
	color: black;
	transition: transform 0.3s ease-in-out;
	margin: 0;
	padding: 0;
	padding-top: 0.5rem;
}

.token-card h2 {
	color: black;
	font-size: 2rem;
	margin: 0;
	padding: 0;
}

.token-card h3 {
	color: black;
	font-size: 1rem;
}

#tokenomics-cards {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;

	color: black;
}

#chart {
	margin-top: 20vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#chart h1 {
	font-size: 4rem;
	color: white;
	text-align: center;
	margin: 0;
}

#mute-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
	padding: 1rem;
	background-color: #69886f;
	color: white;
	text-align: center;
	text-decoration: none;
	font-size: 1rem;
	border-radius: 1rem;
	margin-top: 2rem;
	transition: transform 0.2s ease-in-out;
}

#mute-image {
	width: 2vw;
	height: auto;
}

#mute-button:hover {
	transform: scale(1.1);
}

#dexscreener-embed {
	position: relative;
	width: 80%;
	padding-bottom: 100%;
}
@media (min-width: 1400px) {
	#dexscreener-embed {
		padding-bottom: 65%;
	}
}
#dexscreener-embed iframe {
	position: absolute;
	width: 100%;
	height: 60%;
	top: 0;
	left: 0;
	border: 0;
}

#crack {
	width: 40vw;
	height: auto;
}

#map {
	width: 40vw;
	height: auto;
}

#image-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.rocket {
	position: absolute;
	width: 4vw;
	height: auto;
	animation: fly 5s linear infinite;
	animation-fill-mode: backwards;
}

.rocket:nth-child(1) {
	animation-delay: 0.5s;
	top: 50vh;
}

.rocket:nth-child(2) {
	animation-delay: 2s;
	top: 25vh;
}

.rocket:nth-child(3) {
	animation-delay: 1s;
	top: 80vh;
}

.rocket:nth-child(4) {
	animation-delay: 0.2s;
	top: 15vh;
}

@keyframes fly {
	0% {
		transform: translateX(-100vw);
	}
	100% {
		transform: translateX(45vw);
	}
}

#hero-container #ghandi {
	width: 25%;
	margin-left: 10rem;
}

#title-container {
	margin-left: 3vw;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#title-container #title {
	height: 15vw;
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-30px);
	}
}

#title-container h1 {
	font-size: 2.5rem;
	color: white;
	font-weight: normal;
	text-align: center;
	margin: 0;
	margin-top: 2rem;
	text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
}

.custom-shape-divider-bottom-1713529443 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	transform: rotate(180deg);
}

.custom-shape-divider-bottom-1713529443 svg {
	position: relative;
	display: block;
	width: calc(108% + 1.3px);
	height: 150px;
}

.custom-shape-divider-bottom-1713529443 .shape-fill {
	fill: #ffffff;
}

#buy {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 5rem;
	padding-bottom: 5rem;
	height: 75vh;
	background-color: white;
}

#buy h1 {
	font-size: 4rem;
	color: #37bcda;
	text-align: center;
	margin: 0;
}

#buy p {
	font-size: 2.5rem;
	color: black;
	text-align: center;
	margin: 0;
	margin-top: 1rem;
	margin-bottom: 2rem;
}

@keyframes moveCar {
	0%,
	100% {
		transform: translateX(-100%);
	}
	50% {
		transform: translateX(100%);
	}
}

@keyframes flipCar {
	0%,
	100% {
		transform: scaleX(1);
	}
	50% {
		transform: scaleX(-1);
	}
}

#car-container {
	height: 20vw;
	position: absolute;
	bottom: 0;
	animation: moveCar 5s linear infinite;
}

#animated-car {
	height: 100%;
	animation: flipCar 5s steps(1) infinite;
}

.rotating-logo {
	position: absolute;
	left: 10vw;
	margin-top: 20vh;
	height: 20vw;
	animation: rotation 10s infinite linear;
}

.meme {
	position: absolute;
	right: 10vw;
	margin-top: 25vh;
	height: 25vw;
}

@keyframes rotation {
	0% {
		transform: rotate(-180deg);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(-180deg);
	}
}

#buy #token-link {
	padding-left: 2rem;
	padding-right: 2rem;
	height: 3rem;
	background-color: rgba(240, 240, 240, 0.9);
	font-size: 1.75rem;
	color: #1d0d20;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 1rem;
	margin-top: 1rem;
	transition: transform 0.2s ease-in-out;
}

#buy #token-link:hover {
	transform: scale(1.1);
}

#buy h4 {
	color: #37bcda;
	font-size: 1.5rem;
	margin: 0;
	padding-top: 1rem;
	font-weight: normal;
}

#buy .button {
	display: inline-block;
	padding: 1rem 2rem;
	background-color: #37bcda;
	color: white;
	text-align: center;
	text-decoration: none;
	font-size: 2rem;
	border-radius: 1rem;
	margin-top: 2rem;
	transition: transform 0.2s ease-in-out;
}

#buy .button:hover {
	transform: scale(1.1);
}

#navbar .button {
	padding: 1rem 1rem;
	color: white;
	text-align: center;
	text-decoration: none;
	font-size: 1.25rem;
	border-radius: 1rem;
	transition: transform 0.2s ease-in-out;
	border: 2px solid white;
	box-shadow: 0 0 1rem white;
}

#navbar .button:hover {
	transform: scale(1.1) rotate(5deg);
}

#info {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 5rem;
	margin-bottom: 5rem;
	height: 100vh;
}

#info h1 {
	font-size: 4rem;
	color: white;
	text-align: center;
	width: 70%;
}

.card-container-1 {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 1rem;
	margin: 1rem;
	padding-left: 10vw;
	padding-right: 10vw;
}

.card-container-2 {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 1rem;
	margin: 1rem;
	padding-left: 10vw;
	padding-right: 10vw;
}

.card {
	display: flex;
	width: 100%;
	height: 20rem;
	background-color: white;
	gap: 1rem;
	border-radius: 2rem;
	text-decoration: none;
	font-size: 1.75rem;
	color: black;
	transition: transform 0.3s ease-in-out;
}

.card:hover {
	transform: scale(1.05);
}

.card img {
	height: 100%;
	object-fit: cover;
	border-radius: 2rem;
}

#footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 15vh;
	margin-top: 5rem;
	background-color: #940c17;
}

#footer .social-media-links {
	display: flex;
	align-items: flex-end;
	margin: 0;
	padding: 0;
	margin-right: 1rem;
}

#footer .social-media-links img {
	width: 2.5vw;
	height: 2.5vw;
	padding: 0.5rem;
	margin: 0.5rem;
	background-color: #b1101e;
	border-radius: 50%;
	transition: transform 0.2s ease-in-out;
}

#footer .social-media-links a:hover {
	transform: scale(1.1);
}

#footer #logo {
	height: 5vw;
	margin-left: 1rem;
}

.hidden {
	opacity: 0;
	filter: blur(5px);
	transform: translateY(-100%);
	transition: all 1s;
	transition-delay: 0.1s;
}

@media (prefers-reduced-motion) {
	.hidden {
		transition: none;
	}
}

.show {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0);
}

@media screen and (max-width: 1600px) {
	.card {
		align-items: center;
	}

	.card img {
		height: 50%;
		object-fit: cover;
		border-radius: 2rem;
	}
}

@media screen and (max-width: 1350px) {
	#hero-container {
		flex-direction: column;
	}

	#info {
		height: auto;
		margin-bottom: 2rem;
	}

	#buy #token-link {
		font-size: 1rem;
	}

	#buy p {
		font-size: 1.75rem;
	}

	.card-container-1 {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.card-container-2 {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.card {
		width: 70vw;
		margin: 0;
	}
}

@media screen and (max-width: 850px) {
	#info {
		display: flex;
		height: auto;
		margin-bottom: 2rem;
	}

	.card-container {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.card {
		font-size: 1.5rem;
	}

	.button {
		font-size: 2.5rem;
	}

	#title-container h1 {
		font-size: 2rem;
	}

	#hero-container #ghandi {
		margin-top: 2rem;
		width: 40%;
	}

	.social-media-links img {
		width: 8vw;
		height: 8vw;
	}

	#footer .social-media-links img {
		width: 8vw;
		height: 8vw;
	}

	#navbar .button {
		width: 20vw;
	}

	#navbar ul {
		display: none;
	}

	#navbar #logo {
		height: 10vw;
	}

	#footer #logo {
		height: 10vw;
	}

	.token-card h2 {
		font-size: 1rem;
	}

	.token-card h3 {
		font-size: 0.75rem;
	}
}
