
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, sans-serif;
  }
  

  body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #e0eafc, #cfdef3);
    color: #333;
  }
  

  h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    color: #222;
    text-transform: uppercase;
    border-bottom: 3px solid #555;
    padding-bottom: 20px;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    color: #222;
    text-transform: uppercase;

    padding-bottom: 10px;
  }

  
  
  
  a {
    display: block;
    text-decoration: none;
    color: #333;
    background-color: white;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 220px;
    text-align: center;
    font-weight: 500;
  }
  

  a:hover {
    background-color: #4a90e2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }
  

  @media (max-width: 500px) {
    h1 {
      font-size: 2rem;
    }
  
    a {
      width: 180px;
      font-size: 0.9rem;
    }
  }