body {
      margin: 0;
      background-color:#000;
      color:  white;
      font-family: Arial, sans-serif;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .logo img {
      max-width: 80vw;
      max-height: 30vh;
      height: auto;
      width: auto;
      margin-bottom: 2rem;
    }

    .buttons {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .buttons a {
      padding: 1rem 2rem;
      background-color: white;
      color: #000;
      border: 2px solid white;
      text-decoration: none;
      font-size: 1.5rem;
      font-weight: bold;
      border-radius: 8px;
      width: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 4rem;
    }

    .buttons a:hover {
      background-color: #000;
      color: white;
    }