* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #32293C;
    text-align: center;
  }
  
  .container {
    max-width: 100%;
    padding: 20px;
  }
  
  h1 {
    font-size: 36px;
    color: white;
    margin-top: 20px;
    font-family:'Lucida Sans';
  }
  .loading-gif {
    width: 50px;  /* Adjust size as needed */
    height: auto;
    margin-top: 20px;
  }
  .maintenance-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 600px) {
    h1 {
      font-size: 28px;
    }
    .loading-gif {
        width: 40px; /* Smaller GIF size for mobile screens */
      }
  }
  