﻿html, body {
    height: 100%;
    margin: 0;
}

body {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(7, 118, 158, 0.8);
}

main {
    margin-top: 70px; /* Adjust this value based on the height of your navbar */
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
}

.checkbox-label {
    background-color: white;
    padding: 6px 10px;
    border-radius: 5px;
    display: inline-block;
    margin-right: 10px;
}

.checkbox-label input {
    margin-right: 5px;
}

