    body {
      margin: 0;
      font-family: 'Share Tech Mono', monospace;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      gap: 2rem;
      background: url('images/background.png') no-repeat center center fixed;
      background-size: cover;
      position: relative;
    }

    h1 {
      font-size: 4rem;
      letter-spacing: 0.1em;
      text-shadow: 0 0 10px #ff0000;
      color: #ff0000;
      text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
    }

    .button-container {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    a.button {
      text-decoration: none;
      color: #ff0000;
      border: 2px solid #ff0000;
      padding: 1rem 2rem;
      text-align: center;
      font-size: 1.25rem;
      transition: all 0.3s ease;
      background-color: #000000;
    }

    a.button:hover {
      background-color: #ff0000;
      color: #000;
      box-shadow: 0 0 10px #ff0000;
    }