body {
    background-color: #f5f5f5;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url('rotary.png'); /* Using 'rotary.png' as the watermark image */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  
  .maintenance-wrapper {
    text-align: center;
    padding: 20px;
    max-width: 90%;
    background-color: rgba(230, 230, 230, 0.9); /* Adding a semi-transparent white background for better readability */
  }
  
  h1 {
    font-size: 3rem;
    margin-top: 0;
  }
  
  p {
    font-size: 1.2rem;
    margin-top: 0;
  }
  
  .rotary-image {
    max-width: 1000px; /* Adjust the size of the image as needed */
    margin-top: 20px;
  }

/* Add this to your existing CSS or in a separate styles.css file */

.email-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #ff6600;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .email-button:hover {
    background-color: #e55400;
  }
  
  