#header {
    display: flex;
    justify-content: space-around;
}

    #header-logo-cont {
        width: 20%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        #header-logo {
            margin-left: 5px;
            width: 100%;
        }

    #nav-wrapper {
        display: flex;
        list-style: none;
    }

        .nav-item {
            margin-right: 50px;
            font-size: 20px;
        }

            .nav-item:hover {
                transform: scale(1.1, 1.1);
            }

            .nav-link {
                color: #091540;
            }

body {
    margin: 0;
    color: #222222;
    font-family: "Red Hat Display", sans-serif;
    font-optical-sizing: auto;
    scroll-behavior: smooth;
}

    #main-body {
        background: linear-gradient(0deg, #ffffff 99%, #ABD2FA 100%);
        padding-top: 1%;
    }

        #body-cont {
            max-width: 1280px;
            display: block;
            margin: 0 auto;
            color: #091540;
        }

hr {
    border-color: #009fe3;
}

button {
    background: #009fe3;
    color: white;
    font-weight: 800;
    padding: 6px 12px;
    border: 2px solid white;
    border-radius: 4px;
    margin: 12px 2px 2px 2px;

}

    button:hover {
        background: white;
        color: #009fe3;
        border: 2px solid #009fe3;
        cursor: pointer;
    }

.italic {
    font-style: italic;
}

a {
    font-weight: 600;
    text-decoration: none;
    color: inherit;
}

    a:hover {
        text-decoration: underline;
        text-decoration-color: inherit;
        font-weight: 800;
    }

#footer {
    width: 100%;
    background: #dadada;
    margin-bottom: 6%;
    display: flex;
    justify-content: start;
    border-top: 2px solid #009fe3;
    margin-top: 10px;
}

    #footer-logo-cont {
        width: 40%;
        text-align: center;
        margin-left: 20%;
    }

        #footer-logo {
            width: 40%;
            display: inline;
        }

    #footer-p {
        display: inline;
    }

    #footer-h3 {
        display: inline;
        color: #009fe3;
    }

        #footer-h3:hover {
            font-size: larger;
        }

        #f-h3-l:hover {
            text-decoration-color: #009fe3;
        }

    #footer-links {
        list-style: none;
        text-align: center;
        margin-left: 10%;

    }