:root {
  /* Change this value to tweak logo animation speed */
  --logo-speed: 1.2s;
}

@font-face {
  font-family: "PixelLatin";
  src: url("/pixel-latin.ttf") format("truetype");
}

body {
  background: url("images/2BYTE WEB BG.png") center / cover fixed no-repeat;
  color: #eaeaff;
  font-family: "PixelLatin", monospace;
  margin: 0;
  padding: 0;
}

header {
  background: transparent;
  padding: 40px 20px;
  text-align: center;
}

main {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #161625;
  border: 2px solid #3333ff;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #999;
}

.logo {
  max-width: 100%;
  height: auto;
  animation: logoFadeUp var(--logo-speed) ease-out forwards;
}

@keyframes logoFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
