@font-face {
    font-family: 'Alone in Space';
    src: url(/fonts/Alone\ in\ Space.ttf);
}
:root {
  --nav-height: 60px;
  --nav-bg: rgb(0, 0, 0);
  --nav-color: rgba(255, 255, 255, 0.8);
  --nav-hover: rgba(255, 255, 255, 1);
  --nav-spacing: 2rem;
}
body {
    font-family: 'Alone in Space';
    background-color: black;
    color: white;
    text-align: center;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30vh; 
  background: radial-gradient(ellipse at top, #60a5fa, transparent 70%);
  pointer-events: none;
}
a {
  position: relative;
  display: inline-block;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: #60a5fa;
}
@media (prefers-color-scheme: light) {
  :root {
    --bg-color: 248 248 250;
    --sq-color: 0 0 0;
    --sq-alpha: 0.08;

    --nav-bg: rgb(248, 248, 250);
    --nav-color: rgba(0, 0, 0, 0.7);
    --nav-hover: rgba(0, 0, 0, 1);
  }
}
.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.site-header {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  position: sticky;
  top: 0;
  background-color: var(--nav-bg);
  z-index: 100;
}
@media (max-width: 600px) {
  .site-header {
    justify-content: center;
  }
}
.title {
    text-align: center;
    color: white;
    position: relative;
    top: 350px;
}
.vio {
    text-align: center;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out; 
}
.vio:hover {
    color: #60a5fa;
}
.vio2 {
    color: #60a5fa;
}
p {
    text-align: center;
}
h1 {
    text-align: center;
}
a {
    text-align: center;
}

    .countdown {
    position: relative;
    top: 350px;
    }
    .time {
      display: inline-block;
      margin: 0px 10px;
    }
    .time span {
      display: block;
      font-weight: bold;
    }