/* General styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('assets/background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #fff;
  }
  
  .content {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 30px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto; /* Center the card vertically and horizontally */
  }
  
  .content h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .back-button {
    background-color: #4CAF50;
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
    display: block;
    margin: 20px auto;
    text-align: center;
  }
  
  .back-button:hover {
    background-color: #45a049;
  }
  
  footer {
    padding: 10px 0;
    text-align: center;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: auto; /* Ensure footer stays below content */
  }
  
  footer a {
    margin: 0 10px;
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  
  footer a:hover {
    color: #4CAF50;
  }
  
  /* Media Query for Tablets (768px and below) */
  @media screen and (max-width: 768px) {
    .content {
      width: 90%;
      padding: 25px;
    }
  
    .content h1 {
      font-size: 1.8rem;
    }
  
    .content p {
      font-size: 0.9rem;
    }
  
    .back-button {
      font-size: 0.9rem;
      padding: 8px 16px;
    }
  
    footer a {
      font-size: 0.8rem;
    }
  }
  
  /* Media Query for Smaller Devices (480px and below) */
  @media screen and (max-width: 480px) {
    .content {
      width: 95%;
      padding: 20px;
    }
  
    .content h1 {
      font-size: 1.5rem;
    }
  
    .content p {
      font-size: 0.8rem;
      line-height: 1.4;
    }
  
    .back-button {
      font-size: 0.8rem;
      padding: 6px 12px;
    }
  
    footer a {
      font-size: 0.7rem;
    }
  
    footer {
      padding: 5px 0;
    }
  }
  