
    body {
      font-family: Arial, sans-serif;
      padding: 1.5rem;
      margin: 0;
      background: #0b0c10;
      color: #ffffff;
    }
    header {
      
      margin-bottom: 2rem;
    }
    header h2 {
      font-size: 2.5rem;
      color: #66fcf1;
      text-align: center;
      margin-bottom: 0.5rem;
      
    }
    header p {
      font-size: 1.2rem;
      color: #c5c6c7;
      text-align: center;
    }
    main {
      max-width: 800px;
      margin: 0 auto;
      padding: 1.5rem;
      background: #1f2833;
      border-radius: 8px;
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #66fcf1;
    }
    p {
      line-height: 1.6;
      margin-bottom: 1rem;
      color: #c5c6c7;
    }
    a {
      color: #66fcf1;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    a:hover {
      color: #45a29e;
    }
    footer {
      text-align: center;
      margin-top: 2rem;
      padding: 1rem;
      background: #1f2833;
      border-radius: 8px;
    }


    .attribution {
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .attribution strong {
      color: #45a29e;
    }

    ul {
      padding-left: 1.2rem;
    }

    .buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 2rem;
    }

    .buttons a {
      text-align: center;
      padding: 0.8rem 1.2rem;
      background-color: #1f2833;
      color: #66fcf1;
      text-decoration: none;
      border-radius: 6px;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .buttons a:hover {
      background-color: #45a29e;
      color: #0b0c10;
    }

    @media (min-width: 600px) {
      .buttons {
        flex-direction: row;
        justify-content: center;
      }
    }
  