body{
    font: 16px/1.5 Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;

}

.custom-container {
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.custom-active-nav {
    color: #078301;
    /* Add a border-bottom of 2px and make it round */
    border-bottom: 5px solid #078301;
    border-radius: 2px;

}

@media (max-width: 768px) {
    .custom-container {
        margin-top: 2vh;
        margin-bottom: 3vh;
    }
    .custom-active-nav {
        border-bottom: 3px solid #078301;
        /* make the width of the border smaller */
        border-radius: 1px;

    }
}

/* Animation for the custom container class */
.custom-container.animate {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.custom-container.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Initial gap of 70px between navbar elements */
.navbar .nav-item {
    margin-right: 70px;
}

/* Media query for smaller screens to reduce the gap */
@media (max-width: 767px) {
    .navbar .nav-item {
        margin-right: 20px; /* Adjust the gap for smaller screens as needed */
    }
}



/* Default styles */
.custom-h2 {
    margin-bottom: 3vh; /* Set margin as a percentage of viewport height */
    color: #003A65;
    margin-top: 3vh;
}
.custom-p{
    /* move the text slightly lower */
    margin-top: 2vh;
    margin-bottom: 2vh;
}

.greetings {
    padding-bottom: 20px;
}

.intro-p {
    padding-top: 20px;
}



/* Media query for smaller screens */
@media (max-width: 768px) {
    .custom-h2 {
        margin-bottom: 2vh; /* Adjust the margin for smaller screens */
        margin-top: 2vh;
    }
    .custom-p{
        /* move the text slightly lower */
        margin-top: 1vh;
        margin-bottom: 1vh;
    }
    .happening-now-section {
        margin-top: 2vh;
        margin-bottom: 2vh;
    }
}

.happening-now-section {
    margin-top: 5vh;
    margin-bottom: 5vh;
}


/* Custom styles for the footer */
.custom-footer {
    background-color: #003A65;
    width: 1360px; /* Set the width to 100% to touch the left side */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px;
    border-top-right-radius: 150px;
    color: #ffffff;
}

/* Style for each footer section */
.footer-section {
    flex: 1;
    text-align: center;
}

.footer-section img.logo {
    max-width: 100%;
    margin-bottom: 100px; /* Add a distance of 75px between the logo and copyright */
}

/* Style for social media links */
.social-link {
    display: inline-block;
    margin: 0 10px;
    font-size: 24px;
}

/* Style for the footer links */
.footer-links {
    text-align: center;
    /* Make them appear as a column */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* make the text white and larger */
    color: white;
    font-size: 20px;
    /*remove styling from url*/
    text-decoration: none;
}

/* Media query for smaller screens */
@media (max-width: 767px) {
    .custom-footer {
        flex-direction: column;
        align-items: center;
        width: calc(100% - 40px); /* Adjust width for smaller screens */
    }

    .footer-section {
        margin: 10px 0;
    }

    .footer-section img.logo {
        margin-bottom: 10px; /* Adjust margin for smaller screens if needed */
    }

    .social-link {
        font-size: 20px; /* Adjust icon size for smaller screens */
    }
}









