:root {
  --neon-cyan: #00F0FF;
  --electric-teal: #0099CC;
  --deep-navy: #0A0E17;
  --dark-sapphire: #10182F;
  --muted-charcoal: #1E242C;
  --futuristic-copper: #FFAA66;
  --soft-white: #EAEAEA;
  --muted-gray: #B0B3BA;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--soft-white);
  background-color: var(--deep-navy);
  margin: 0;
  padding: 0;
}

.center-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  background-color: var(--color-deep-navy); /* Optional: Set a background color */
}

.logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  color: var(--color-soft-white); /* Optional: Set text color */
  font-family: 'Exo 2', sans-serif;
  font-size: 2rem;
  
}

h1, h2, h3 {
  font-family: 'Exo 2', sans-serif;
  color: var(--soft-white);
  margin-bottom: 0.5em;
}

h1 {
  font-size: 48px;
  font-weight: bold;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--electric-teal);
}

h3 {
  font-size: 24px;
  font-weight: bold;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

.btn-primary {
  background: var(--neon-cyan);
  color: var(--deep-navy);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  background: var(--electric-teal);
  box-shadow: 0 0 10px var(--neon-cyan);
}
