::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: whitesmoke;
    border-radius: 100px;
}

body {
    display: flex;
    flex-direction: column;
    min-width: 100vw;
    min-height: 100vh;
    margin: 0;
    background-color: #000000;
    overflow-x: hidden;
}

.banner {
    width: 99%;
    margin: auto auto 1vh;
    height: 80%;
    min-height: 40em;
    background-image: url(/layout/img/logo.png);
}

.content-header {
    width: 99%;
    margin: auto auto 1vh;
    background-color: whitesmoke;
    text-align: center;
    font-size: 220%;
    font-family: "Garamond", serif;
    color: #000000;
}

.content-header-text {
    width: 90%;
    height: 10%;
    text-align: center;
    font-size: 60%;
    font-family: "Garamond", serif;
    color: #000000;
    margin: 1% 2% 2% 5%;
}

.footer {
    width: 99%;
    margin: auto auto 1vh;
    height: 10%;
    min-height: 8em;
    background-color: #D1ECF4;
    text-align: center;
    color: #000000;
}

.footer-logo {
    width: 15em;
    max-width: 50%;
    height: 100%;
}