body {
    font-family: "Verdana", sans-serif;
    font-size: 125%;
    /*background-color: rgb(127, 255, 161);*/
    background-color: rgb(255, 255, 255);
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    overflow: hidden;
    /*background-color: #333;*/
    /* blue
    background-color: #4aaac7;
    /* green */
    background-color: #d7d532;
}
.navbar a {
    float: left;
    display: block;
    color: #080000;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.navbar a:hover {
    background-color: #ddd;
    color: black;
}
.content {
    display: none;
    padding: 100px 20px;  /* Add padding to the top to account for the fixed navbar */
    margin-bottom: 20px;  /* Add margin to the bottom to ensure consistent spacing */
}
.active {
    display: block;
}
.bullet_underline{
    text-decoration: underline;;
}
ul{
    line-height: 1.6;
}
.rotate-image90 {
    transform: rotate(90deg);
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.image-container img {
    height: auto;
    border: 2px solid #ccc;
    border-radius: 5px;
}
.image-container-square {
    display: grid;
    grid-template-columns: repeat(2, /*auto*/ 400px);
    grid-template-rows: repeat(2, /*auto*/ 400px);
    gap: 10px; /* Optional: Adds space between images */
}

.image-container-square img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire area without distortion */
    border: 2px solid #ccc;
    border-radius: 5px;
}
.fa {
    padding: 20px;
    font-size: 28px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    margin: 2px 2px;
}
.fa:hover {
    opacity: 0.7;
}
.fa-instagram {
    background: #125688;
    color: white;
}
.fa-facebook {
    background: #3B5998;
    color: white;
}
/* Image styling */
.logo {
    display: block;
    margin: auto;
    width: 100%;  /* Make sure the image is responsive */
    max-width: 400px;  /* Limit max width on larger screens */
    transition: margin-top 0.3s ease;  /* Smooth transition for margin-top adjustment */
    margin-top: 10px;  /* Adds 20px space above the image */
}

/* Image margin for different screen sizes */
@media (max-width: 768px) {
    .logo {
        width: 100%;  /* Make sure the logo is responsive */
    }
}
.logo-bottom {
    margin-top: 80px;  /* Adds 20px space above the image */
    width: 100px;
    max-width: 100%;  /* Remove any max-width on mobile */
}