@font-face {
  font-family: 'Luckiest Guy';
  src: url('/assets/fonts/LuckiestGuy-Regular.woff2') format('woff2');
  font-display: swap;
}

:root {
  --bg: #0f1724;
  --text: white;
}

* {
  margin: 0;
  padding: 5px;
	font-family: Arial, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
	animation: fade-in 1s ease-in;
}

a {
  color: var(--text);
  text-decoration: none;
	font-weight: bold;
}

a { color: var(--text); text-decoration: none; font-weight: bold; }
ul { padding-left: 20px;}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
	margin-top: 50px;
}

.mw { max-width: 600px; }

.title-text {
  background: linear-gradient(25deg, #2C0066, #f767ed, #feb47b, #FFD303);
  background-size: 115% 115%;
  animation: gradient-animation 15s ease infinite, glow 3s ease-in-out infinite alternate;
  font-size: 100px;
	font-family: "Luckiest Guy", Impact, Verdana, sans-serif;
	font-weight: 400;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
}

@keyframes gradient-animation {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes fade-in {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
