
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-image: url(images/pixel_temple.png);
      background-attachment:fixed;
      background-position: left top;
      background-size: 100% auto;
    }

h2{
 font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  color: #fff;
  text-shadow: 5px 5px 17px rgba(0, 0, 0, 0.496);
}

    /* Banner */
      .banner {
      color: white;
      text-align: center;
      padding: 0.1rem 1rem;
      font-size: 5.8rem;

      font-family: "Marck Script", cursive;
      font-weight: 400;
      font-style: normal;

      background-image: url(images/logoBG.jpg);
      background-repeat: repeat-x;     /* tile horizontally */
      background-size: auto 100%;      /* fill banner height */
      background-position: center;     /* optional: center vertically */
}
 

    /* Navigation */
    .navbar {
      display: flex;
      justify-content: center;
      align-items: center;
      background: transparent url(images/menuBG.gif) repeat-x top;
      background-size: auto 100%; 
      background-repeat: repeat-x;
      background-position: center;
      font-family: "Montserrat", sans-serif;
    }

    .navbar a {
      color: white;
      padding: 1rem 2rem;
      text-decoration: none;
      display: block;
      
    }

    .navbar a:hover {
      background: #fafafac1;
      color: black;
    }

    /* Body Section */
    .content {
      padding: 2rem;
      text-align: center;
    }

    /* Modal Container */
    .modal-container {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap; /* allows wrapping on smaller screens */
      margin-top: 2rem;
    }

    /* Modal Template */
    .modal {
      flex: 1 1 300px; /* responsive sizing */
      max-width: 300px;
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(151, 151, 160, 0.48);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);

    }

    .modal img {
      width: 100%;
      display: block;
    }

    .modal .info {
      padding: 1rem;
      text-align: left;
      flex-grow: 1;

      font-family: "Montserrat", sans-serif;
      font-optical-sizing: auto;
      font-weight: 300;
      font-style: normal;
      color: #fff;
      text-shadow: 5px 5px 17px rgba(0, 0, 0, 0.461);
    }

    .modal button:hover {
      background: #0056b3;
    }

    /* Footer */
    footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 1rem;
      margin-top: 2rem;
    }

.dl_button{
  margin-left: 0%;
  margin-bottom: 10px;
}




/* Base button style */
.button.aqua {
   position: relative;
  display: inline-block;
  padding: 6px 36px;
  font-size: 1.0rem;
  font-weight: light;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 9999px; /* pill shape */
  background-color: #007bff; /* flat blue */
  transition: background-color 0.25s ease, transform 0.1s ease;
  border: 1px solid rgba(255, 255, 255, 0.481);
  box-shadow: 5px 5px 17px rgba(0, 0, 0, 0.193);
}


/* Hover: turns orange */
.button.aqua:hover {
  background-color: #ff8c00;

}

/* Active (pressed): slightly darker orange */
.button.aqua:active {
  background-color: #e67300;
  transform: translateY(1px);
}


    .modal-stages {
      flex: 1 1 300px; /* responsive sizing */
      max-width: 600px;
      background: white;
      color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(151, 151, 160, 0.48);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);

    }

  