body {
    background-color: #f2f2f2;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    line-height: 1.7; 
    transition: background-color 0.3s ease;
  }
  
  .container {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    color: #333;
    transition: color 0.3s ease;
  }

  h1 {
    text-align: center; /* Center-align the title */
  }
  
  a {
    color: #007bff; /* Link color in normal mode */
    transition: color 0.3s ease;
  }
  
  .dark-mode {
    background-color: rgb(15, 15, 15);
    color: #f2f2f2;
  }
  
  .dark-mode a {
    color: #64b5f6; /* Link color in night mode */
  }

/* Add a button-like style for the contact button */
.contact-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    float: right; /* Add this line to float the button to the right */
    margin-top: 40px; /* Add margin-top to create vertical white space */


  }
  
  .contact-button:hover {
    background-color: #0056b3;
}

/* Styles for contact button in dark mode */
.dark-mode .contact-button {
  color: #fff; /* Change the text color to white */
}

.dark-mode .contact-button:hover {
  background-color: #003a80; /* Adjust the hover background color in dark mode */
}
/* force the background of the page to be transparent, necessary when BeeLine is active */
body {
    background-color: #FFFFFF !important;
  }
/* Responsive styles */
@media (max-width: 768px) {
  body {
    background-color: #FFFFFF !important;
    padding: 10px;
  }

  h1 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
    line-height: 1.5;
  }

  .contact-button {
    display: block;
    float: none;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}