body{
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif; 
 }

h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    color: #557a2a;
    font-style: italic;
    text-align: center;
    margin-top: 0;
}

h4{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-style: italic;
    color: #ffffff;
}

h2{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 24px;
    color: #557a2a;
}

h3{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-weight: 300;
}

h5{
    font-size: 15px;
    color: #ffffff;
}

p{
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    margin-left: 11%;
    margin-right: 11%;
    padding-top: 3%;
}

#menu {
  background-color: #557a2a;
  padding: 5px 20px;
}

.menu-header {
  display: flex;
  justify-content: center; /* align hamburger to right */
  align-items: center;
}

.hamburger {
  font-size: 28px;
  color: white;
  cursor: pointer;
  display: none;
}

/* Tab buttons */
.menu-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 5px;
}

.menu-links a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .menu-links {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .menu-links.show {
    display: flex;
  }

  .menu-links a {
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .ml{
    min-width: 70%;
    display: block;
    height: auto;
}

/*.center {
    display: block;
    width: 700px;
    max-width: 90vw;
    height: auto;
}*/
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    max-height: none;
    background: transparent;
    width: clamp(250px, 40vw, 500px)
}

#menu a:hover{
    color: #000307;
}

html, body {
    /***background: url(images/plain1.jpg) no-repeat center fixed***/

    background-color: black;
    background-size: cover;
    background-position: center;
    max-width: 100%;
    max-height: auto;
}

ul{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    align-items: center;
}

ol{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    text-align: center;
    list-style-type: disc;   
}

/* Div paragraph on index page */

.pIndex p{
    color: #557a2a;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 0;
}

a{
    text-decoration: none;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    margin-top: 0%;
}

a:hover{
    color: #557a2a;
}

.footer-container{
    background-color: black;
    padding-bottom: 0rem;
}

.footer{
    width: 100%;
    height: 30vh;
    background-color: black;
    color: #ffffff;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.footer-logo {
    margin-top: 2rem;
    text-align: center;
}

.footer-heading {
    display: flex;
    flex-direction: column;
    margin-right: 4rem;
}

.footer-heading h2{
    margin-bottom: 2rem;
    font-size: 22px;
    padding-top: 2rem;
    text-align: start;
}

.footer-heading a{
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 1 rem;
    font-size: 18px;
    text-justify: left;
}

.footer-heading a:hover{
    color: #557a2a;
    transition: 0.3s ease-out;
}

.footer-email-form h2{
    align-content: left;
    margin-top: 2rem;
    text-align: left;
    font-size: 22px;
}

#footer-email{
    width: 230px;
    height: 30px;
    border-radius: 4px;
    padding-left: 0.4rem;
    font-size: 1rem;
    margin-bottom: 1rem;
}

#footer-email::placeholder{
    color: #557a2a;
    text-align: left;
}

#footer-email-btn{
    width: 60px;
    height: 30px;
    border-radius: 4px;
    background-color: white;   
}

#footer-email-btn:hover{
    cursor: pointer;
    background-color: #557a2a;
    transition: all 0.4s ease-out;
}

.footernote p{
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 14px;
    }

/*div p:nth-child(1){
    font-size: 14px;
    text-justify: right;
    padding-bottom: 50%;
}*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.ml{
    width: 35%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* MOBILE VIEW FOR FOOTER */

@media screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 2rem 1rem;
        text-align: center;
    }

    .footer-heading {
        margin: 1.5rem 0;
        align-items: center;
    }

    .footer-heading h2,
    .footer-email-form h2 {
        text-align: center;
    }

    .footer-email-form {
        margin: 2rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #footer-email {
        width: 100%;
        max-width: 300px;
        padding-left: 0.5rem;
    }

    #footer-email-btn {
        width: 100px;
    }

    .footer-logo {
        margin-top: 1rem;
        text-align: center;
    }

    .footernote p{
        text-align: center;
        margin-top: 1rem;
        font-size: 12px;
    }
}

