/* Base styles */
body {
    background-color: #10072c;
    color: #ffffff;
    font-family: 'Exo 2', sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
  }
  
  /* Social Icons in top-right corner */
  .social-icons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
  }
  
  /* Icon images */
  .social-icons img.icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: opacity 0.3s;
  }
  
  .social-icons img.icon:hover {
    opacity: 0.7;
  }
  
  /* Main content */
  .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
  }
  
  .logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
  }
  
  h1 {
    font-family: 'Patua One', cursive;
    font-size: 3rem;
    margin: 0;
  }
  
  p {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    opacity: 0.85;
  }
  
  /* === Responsive Media Queries === */
  
  /* Tablet */
  @media (min-width: 600px) {
    .logo {
      width: 180px;
    }
  
    h1 {
      font-size: 3.5rem;
    }
  
    p {
      font-size: 1.7rem;
    }
  
    .social-icons img.icon {
      width: 30px;
      height: 30px;
    }
  }
  
  /* Desktop */
  @media (min-width: 1024px) {
    .logo {
      width: 200px;
    }
  
    h1 {
      font-size: 4rem;
    }
  
    p {
      font-size: 2rem;
    }
  
    .social-icons img.icon {
      width: 32px;
      height: 32px;
    }
  }