body {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0%;
    background-color:rgb(58, 108, 65);
    background-size: cover;
    background-attachment: fixed;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    text-align: center;
    font-size: 3em;
    font-weight: bold;
    margin: 0;
    padding: 2;
}

h2 {
    font-size: 2em;
    font-weight: bold;
}
p{
    font-size: 1.5em;
    font-weight:bold;
    margin: 0;
    padding: 2px;
}

.header {
    padding: 10px 0 10px 0;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.4);
}

/* Start of big image styles */
#darkbox { 
    width:100%;
    position:absolute;
    z-index: 2;
    margin: 0 auto;
    background-color:transparent;
    text-align:center;
}

.darkboximg { 
    max-height: 90vh;
    min-height: 80vh;
    max-width: 90vw;
    margin: auto;
    object-fit: contain;
    border-style: solid; 
    border-width: 10px; 
    border-color: black; 
    border-radius: 15px; 
}

/* End of big image styles */

/* Start of Gallery styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, auto));
    align-content: center;
    padding-top: 10px;
    gap: 15px;
    width: 90%;
    text-align: center;
    margin: 0 auto;
}

/*.photobox {} */


.gallery img {
    max-width: 100%;
    height: auto;
    
    position: relative;
    object-fit:contain;
    border: 2px solid black;
    border-radius: 15px;
}

.gallery img:hover {
    filter:none;
    box-shadow: 4px 6px rgba(255, 254, 254, 0.15);
    top: -1px;
    left: -1px;
    opacity: 1;

}
/* End of Gallery styles */

/* Menu styles */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1;
  }
  
  li {
    float: left;
  }
  
  li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover {
    background-color: #111;
  }
  
  .active {
    background-color: #4CAF50;
  }
/* End of Menu styles */
