* {
    vertical-align: baseline;
    font-weight: inherit;
    font-family: inherit;
    font-style: inherit;
    font-size: 100%;
    border: 0 none;
    outline: 0;
    padding: 0;
    margin: 0;
    }
    
    .header {
        width: 100vw;
        height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        background-color: rgb(28, 42, 91);
    }

    a {
        color: inherit; /* blue colors for links too */
        text-decoration: inherit; /* no underline */
    }

    .headerLink {
        color: rgb(204, 178, 111);
        text-decoration: none;
    }

    .logo {
        width: 90px;
        height: 90px;
        margin: 0 auto;
        border-radius: 50%;
    }

    .navBar {
        font-size: 14px;
        color: rgb(204, 178, 111);
        width: 350px;
    }

    h1 {
        font-size: 40px;
        color: rgb(204, 178, 111);
    }

    ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    li:hover {
        cursor: pointer;
        color: blanchedalmond;
    }
    
    .headerBox {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        text-wrap: pretty;
    }

    .SectionContainer {
        margin: 0 auto;
        width: 100vw;
        height: 350px;
        margin-top: 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .sectionImage {
        width: 140px;
    }

    .sectionBlock {
        width: 330px;
        display: flex;
        flex-direction: column;
    }

    .blockText {
        font-size: 14px;
        margin: 1em;
        color: rgb(100, 124, 145);
    }

    .gallery {
        box-shadow: 0px 0px 10px rgb(204, 178, 111);
        border-radius: 4px;
        height: 450px;
    }

    .advanceButton {
        width: 40px;
    }

    .advanceButton:hover {
        cursor: pointer;
    }

    .GalleryContainer {
        max-width: 380px;
        max-height: 350px;
        overflow: auto;
    }

    .GallerySlide {
        max-width: 260px;
        max-height: 350px;
        overflow: auto;
        border-radius: 4px;
    }

    .Footer {
        height: 200px;
        width: 100%;
        flex-direction: column;
        justify-content: space-around;
        background-color: rgb(100, 124, 145);
    }

    .footerText {
        font-size: 20px;
        margin: 1em;
        color: rgb(204, 178, 111);
    }