/* Styling the footer */
footer {
    margin: 0px;
    padding: 0px;
    overflow: hidden; /* Hide the scroll bar */
    display: flex;
    flex-wrap: wrap; /* Allow content to wrap */
    justify-content: center;
    align-items: center;
    background-color:rgba(117, 151, 100, 0.89) !important;/* Dark background color */
    color: #fff; /* Text color */
    position: fixed; /* Stick to the bottom of the viewport */
    left: 0; /* Align to the left edge of the viewport */
    bottom: 0; /* Align to the bottom edge of the viewport */
    width: 100%; /* Take up the full width of the viewport */
    padding: 0 10px; /* Add padding on left and right */
    min-height: 7svh;
    max-height: 7svh;

}

/* Styling the copyright text */
p.copyright {
    color: white; /* Green text color */
    font-family: Arial, Helvetica, sans-serif;
    font-size: .7rem;
    margin: 10px;
    letter-spacing: 1px;
}
