/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  /* Main Container */
  .container {
    max-width: 600px;
    padding: 30px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  /* Error Title */
  h1 {
    font-size: 2.5em;
    color: #ff4d4d;
    margin-bottom: 10px;
  }
  
  /* Error Message */
  p {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
  }
  
  p.italic {
    font-size: 1.2em;
    font-style: italic;
    color: #666;
  }
  
  /* Button Styling */
  button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  /* Footer Styling */
  footer {
    margin-top: 30px;
    padding: 15px;
    background-color: #2c3e50;
    color: white;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }
  
  .footer-left {
    text-align: left;
  }
  
  .footer-middle a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
  }
  
  .footer-middle a:hover {
    text-decoration: underline;
  }
  
  .footer-right {
    text-align: right;
  }
  
  .footer-right iframe {
    margin-left: 10px;
  }
  