/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0e0e0e, #1b1b36);
    color: white;
    text-align: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    max-width: 600px;
    width: 90%;
    padding: 20px;
  }
  
  .content {
    margin-bottom: 50px;
  }
  
  .icon img {
    width: 125px;
    margin-bottom: 20px;
  }

  a {
    color: blue;
  }  
  
  a:visited {
    color: white;
  }

  h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .footer {
    font-size: 0.9em;
  }
  
  .footer a {
    color: #6b46c1;
    text-decoration: none;
  }
  
  footer ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    margin-top: 20px;
  }
  
  footer a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  