body {
	background-color: black;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	font-family: Arial, sans-serif;
}

.card {
	background-color: #02ff00;
	width: 80%;
	max-width: 600px;
	padding: 1rem;
	padding-top: 0.8rem;
	border-radius: 1.5rem;
	text-align: center;
	margin: auto;
	position: relative;
}

.card::before,
.card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: inherit;
	z-index: -1;
}

.card::before {
	animation: grow1 10s linear infinite;
}

.card::after {
	animation: grow2 10s linear infinite;
}

@keyframes grow1 {
	0% {
		box-shadow:
			0 0 0 rgba(2, 255, 0, 0.4), 0 0 0 5vmin rgba(2, 255, 0, 0.36), 0 0 0 10vmin rgba(
				2,
				255,
				0,
				0.32
			), 0 0 0 15vmin rgba(2, 255, 0, 0.28), 0 0 0 20vmin rgba(2, 255, 0, 0.24), 0 0 0 25vmin rgba(
				2,
				255,
				0,
				0.2
			), 0 0 0 30vmin rgba(2, 255, 0, 0.16), 0 0 0 35vmin rgba(2, 255, 0, 0.12), 0 0 0 40vmin rgba(
				2,
				255,
				0,
				0.08
			), 0 0 0 45vmin rgba(2, 255, 0, 0.04);
	}
	100% {
		box-shadow:
			0 0 0 50vmin rgba(2, 255, 0, 0), 0 0 0 55vmin rgba(2, 255, 0, 0), 0 0 0 60vmin rgba(
				2,
				255,
				0,
				0
			), 0 0 0 65vmin rgba(2, 255, 0, 0), 0 0 0 70vmin rgba(2, 255, 0, 0), 0 0 0 75vmin rgba(
				2,
				255,
				0,
				0
			), 0 0 0 80vmin rgba(2, 255, 0, 0), 0 0 0 85vmin rgba(2, 255, 0, 0), 0 0 0 90vmin rgba(
				2,
				255,
				0,
				0
			), 0 0 0 95vmin rgba(2, 255, 0, 0);
	}
}

@keyframes grow2 {
	0% {
		box-shadow: 0 0 0 0 rgba(2, 255, 0, 0), 0 0 0 0 rgba(2, 255, 0, 0), 0 0 0 0
			rgba(2, 255, 0, 0), 0 0 0 0 rgba(2, 255, 0, 0), 0 0 0 0 rgba(2, 255, 0, 0),
			0 0 0 0 rgba(2, 255, 0, 0), 0 0 0 0 rgba(2, 255, 0, 0), 0 0 0 0
			rgba(2, 255, 0, 0), 0 0 0 0 rgba(2, 255, 0, 0), 0 0 0 0 rgba(2, 255, 0, 0);
	}
	100% {
		box-shadow:
			0 0 0 0 rgba(2, 255, 0, 0.4), 0 0 0 5vmin rgba(2, 255, 0, 0.36), 0 0 0 10vmin rgba(
				2,
				255,
				0,
				0.32
			), 0 0 0 15vmin rgba(2, 255, 0, 0.28), 0 0 0 20vmin rgba(2, 255, 0, 0.24), 0 0 0 25vmin rgba(
				2,
				255,
				0,
				0.2
			), 0 0 0 30vmin rgba(2, 255, 0, 0.16), 0 0 0 35vmin rgba(2, 255, 0, 0.12), 0 0 0 40vmin rgba(
				2,
				255,
				0,
				0.08
			), 0 0 0 45vmin rgba(2, 255, 0, 0.04);
	}
}

.top-links {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.top-links a {
	color: black;
	text-decoration: none;
}

.border {
	border-bottom: 2px solid black;
	margin: 10px 0;
}

.marquee {
	overflow: hidden;
	white-space: nowrap;
}

.marquee h1 {
	display: inline-block;
	padding-left: 100%;
	animation: marquee 15s linear infinite;
	font-weight: 900;
	font-style: italic;
	margin: 0;
	font-size: 8vw;
}

@keyframes marquee {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(-100%, 0);
	}
}

.content {
	text-align: center;
}

.buttons {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	margin-top: 20px;
}

.button {
	background-color: black;
	color: lime;
	border: none;
	padding: 10px 20px;
	border-radius: 20px;
	cursor: pointer;
	margin-bottom: 2%;
	width: 80%;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	text-align: center;
	text-decoration: none;
	font-size: 16px; /* Set a base font size */
	transition: background-color 0.3s, color 0.3s;
}

.button:hover {
	background-color: lime;
	color: black;
}

@media (max-width: 480px) {
	.button {
		font-size: 12px;
		padding: 6px 12px;
	}
}

@media (min-width: 768px) {
	.button {
		font-size: 14px;
		padding: 8px 16px;
	}

	.card {
		width: 90%;
	}

	.marquee h1 {
		font-size: 6vw;
	}
}

@media (min-width: 1024px) {
	.button {
		width: 60%;
		padding: 1% 2%;
	}

	.card {
		width: 95%;
	}

	.marquee h1 {
		font-size: 5vw;
	}
}

@media (min-width: 1440px) {
	.button {
		width: 50%;
		padding: 0.8% 1.6%;
	}

	.marquee h1 {
		font-size: 4vw;
	}
}
