body {
    padding: 0;
    margin: 0;
    overflow: auto;
    background: #000000;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Navigation Bar */
.navbar {
    background: #000000;
}
.nav-link, .navbar-brand {
    color: #FFFFFF;
    animation: fadeIn 2s ease-in-out forwards;
    opacity: 0;
}
.navbar-brand {
    font-size: 1.7em;
    margin-left: 2%;
}
.navbar-brand:hover, .navbar-brand:visited {
    color: #FFFFFF;
}
.nav-link {
    font-size: larger;
    cursor: pointer;

}
.nav-link:hover{
    color: #FFFFFF;
}
.navbar-nav li {
    display: block;
    height: 100%;
    margin-right: 30px;
    position: relative;
    align-items: center;
    color: #FFFFFF;
}
.navbar-nav li:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    display: block;
    transition: all 0.3s ease;
    bottom: 25%;
}
.navbar-nav li:hover::after {
    width: 100%;
    height: 1px;
    background-color: #FFFFFF;
}
.navbar-toggler {
    margin-right: 3%;
}
.navbar-collapse {
    justify-content: flex-end;
}

/* Header */
.header {
    background-image: url('Images/IMG_8339.JPG');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Landing Description */
.description {
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 100%;
    width: 50%;
    padding: 2.5%;
    left: 0;
    opacity: 0;
    box-shadow: 10px 10px 15px black;
    animation: fadeIn 2s ease-in-out forwards;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.description h1, .description p {
    color: #FFFFFF;
}
.description h1 {
    font-size: 3.5em;
    line-height: 0.75;
}
.description p {
    font-size: 1.5rem;
}
.description button {
    border: 1px solid #6ab446;
    background: #6ab446;
    border-radius: 0;
    color: #FFFFFF;
}
.description button:hover {
    border: 1px solid #FFFFFF;
    background: #FFFFFF;
    color: #000;
    transition: 1s;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

/* About Section */
.about {
    background-color: #FFFFFF;
}
.about h1 {
    color: #000000;
    text-align: center;
    margin-top: 3%;
    margin-bottom: 20px;
    font-size: 2.5em;
    text-decoration: underline;
}
.about p{
    color: #000000;
    line-height: 1.6;
}
.about-image {
    margin-left: auto;
    border-radius: 50%;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.img-description {
    margin-bottom: 1%;
    display: flex;
    align-items: center;
}
.img-description p {
    margin-bottom: 5%;
    text-align: justify;
    flex-basis: 45%;
    font-size: 1.2em;
    float: inline-end;
}
@media (max-width: 768px) {
    .img-description p {
        align-items: center;
        flex-basis: auto;
    }
    .about-image {
        display: none;
    }
}

/* Contact Us Section */
.contact-us {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #000000;
    padding: 20px;
    border-radius: 20px;
    color: #FFFFFF;
    height: 500px;
    margin-top: 2%;
    margin-bottom: 2%;
    text-align: center;
    flex-wrap: wrap;
}

.contact-us h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-decoration: underline;
}

.holding p {
    font-size: 1.2em;
}

.info {
    flex-basis: 100%; 
    font-size: 1.2rem;
    margin: 20px 0;
    padding: 10px;
}

@media (max-width: 768px) {
    .contact-us{
        height: auto;
    }
    .holding {
        flex-direction: column;
        align-items: center;
    }
    .info {
        flex-basis: auto;
        margin-top: 20px;
    }
}

/* Make a Payment Section */
.make-a-payment {
    color: #FFFFFF;
    text-align: center;
    justify-content: center;
    padding: 5%;
    background-image: url('Images/scott-graham-5fNmWej4tAA-unsplash.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 40rem;
}
.inner-info {
    top: 35%;
    position: absolute;
    text-align: center;
    background-color: #000000;
    padding: 2.5%;
    box-shadow: 10px 10px 15px black;
}
.inner-info p {
    color: #FFFFFF;
}
.make-a-payment button {
    border: 1px solid #6ab446;
    background: #6ab446;
    border-radius: 0;
    color: #FFFFFF;
}
.make-a-payment button:hover {
    border: 1px solid #FFFFFF;
    background: #FFFFFF;
    color: #000000;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
    transition: 1s;
}

/* Footer */
.page-footer {
    color: #FFFFFF;
    padding: 40px 0 10px;
}
.page-footer p, .footer-copyright {
    color: #FFFFFF;
}
.footer-copyright {
    padding: 20px 0;
}
.page-footer a{
    text-decoration: none;
    color: #FFFFFF;
}

/* Animations */
.to-animate {
    opacity: 0;
    transform: translate(0, 10vh);
    transition: all 2s;
}
.to-animate.visible {
    opacity: 1;
    transform: translate(0, 0);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
