:root {
    --primary-color: #DAA520; /* Gold */
    --secondary-color: #732a34; /* Maroon */
    --accent-color: #FFD700; /* Light yellow */
    --background-color: #732a34; /* Maroon */
    --text-color: #FFFFFF; /* White */
    --text-secondary-color: #F5F5DC; /* Beige */

  }
  
  body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Arial', sans-serif;
    width: 90%;
    margin: 8px auto;
  }

  header {
    margin: 2px auto;
  }

  .fade-in-logo {
    animation: fadeIn 5s;
  }

  .slide-fade-in {
    animation: slideFadeIn 2s ease-out forwards;
    position: relative;
    opacity: 0;
  }

  .slide-left-fade-in {
    animation: slideFromLeftFadeIn 2s ease-out forwards;
    position: relative;
    opacity: 0;
  }

  .building1 {

    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 20%;
  }



  @keyframes fadeIn {
    0% {opacity : 0;}
    100% {opacity: 1;}
  }

  @keyframes slideFadeIn {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes slideFromLeftFadeIn {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }

    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  main {
    display: block;
    width: 90%;
    height: 100%;
    margin: 2px auto;
    padding: 4px;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    overflow: auto;
  }

  footer {
    margin: 2px auto;
    text-align: center;
  }



  hr {
    border: 1px solid var(--accent-color);
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
  }
  
  a:hover {
    color: var(--primary-color);
  }
  
  .button-primary {
    background-color: var(--primary-color);
    color: var(--text-secondary-color);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    text-transform: uppercase;
  }
  
  .button-primary:hover {
    background-color: var(--accent-color);
  }
  
  .button-secondary {
    background-color: var(--secondary-color);
    color: var(--text-secondary-color);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    text-transform: uppercase;
  }
  
  .button-secondary:hover {
    background-color: var(--primary-color);
  }

  .logo-image {
    display: block;
    margin: 2px auto;
  }

  .highlight { 
    color: var(--primary-color); font-weight: bold; 
  }

  .training-description li {
    list-style-type: none;
  }
  

  /* Additional styles for inputs, forms, etc. can be added here */

  @media only screen and (max-width: 600px) {
    .building1 {
      max-width: 100%; /* Makes the image responsive, adjusting its width to the container */
      height: auto; /* Maintains the aspect ratio of the image */
      margin-right: 10px; /* Adjusts the margin for smaller screens, if necessary */
    }
  }
  


  