* {
    margin: 0;
    padding: 0;
    border: none;
    font-family: 'Source Sans Pro', sans-serif;
    scroll-behavior: smooth;
}

a {
    color: inherit;
}

a :hover {
    filter: brightness(75%);
}

:root {
    --registrationBlack: #010101;
    --iceberg: #74AADA;
    --prussianBlue: #01335B;
    --jonquil: #FED116;
    --bostonURed: #CC0000;
}

h1 {
    font-size: 2vw;
}

.bigFont {
    font-size: 200%;
}

.littleFont {
    font-size: 60%;
}

body {
    background-color: var(--prussianBlue);
    --footerHeight: 50vh;
    --headerHeight: 90px;
}

#page {
    color: var(--jonquil);
}

header {
    position: absolute;
    --buttonHeight: 40px;
    width: 100%;
    height: var(--headerHeight);
    background-color: transparent; /* var(--BostonURed); */
    z-index: 20;
}

.contactButton, #menuButton {
    position: absolute;
    padding: 0px 5px;
    top: calc(calc(var(--headerHeight)/2) - calc(var(--buttonHeight)/2));
    right: 5%;
    height: calc(var(--buttonHeight)*1.5);
    z-index: 100;
}

#menuButton {
    position: fixed;
}

#listBack {
    position: fixed;
    top: 0;
    transform: translateY(-200%);
    height: 100%;
    width: 100%;
    background: transparent;
    transition: 1s ease-in-out;
}

#menuList{
    position: fixed;
    top: 0;
    width: 100%;
    list-style: none;
    height: fit-content;
    background: linear-gradient( rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.80) );
    font-size: 8vw;
    color: var(--jonquil);

}

.listShown{
    transform: translateY(0) !important;
}

#menuButton {
    display: none;
}

#color {
    display: none;
}

#headerFlag {
    position: absolute;
    top: calc(calc(var(--headerHeight)/2) - calc(var(--buttonHeight)/2));
    height: var(--buttonHeight);
    padding-left: 5%;
    z-index: 100;
}    

footer { 
    width: 100%;
    height: var(--footerHeight);
    background-color: #333333;
    position: relative;
    bottom: 0px;
}

#footerFlag {
    position: absolute;
    top: calc(calc(var(--footerHeight)/2) - calc(100px)/2);
    height: 100px;
    padding-left: 10%;
}

footer>div {
    float: right;
    height: 100%;
    width: 20%;
    margin: 0 5%;
}

.footerText {
    position: relative;
    top: 25%;    
}

.footerText>h2 {
    color: var(--jonquil);
    font-weight: bold; 
}

.footerText>*, .footerText>*>* {
    margin: 1em 0;
    text-decoration: none;
    color: #efefef;
}

.footerText a {
    font-size: 1.25em;
    margin: 0 0.75em;
}

#neo {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 5px;
    float: none;
    margin: 0 0;
    text-align: center;
}

#neo>a>img {
    width: 10vw;
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
    #black {
        display: none;
    }

    #color {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    body {
        --footerHeight: calc(100vh/3);
    }
    #footerFlag {
        top: calc(calc(var(--footerHeight)/2) - calc(50px)/2);
        height: 50px;
    }

    .footerText {
        font-size: 2vw;
    }
    footer>div {
        width: 25%;
        margin: 0 3%;
    }
    #neo>a>img {
        width: 25vw;
    }

    .contactButton {
        display: none;
    }

    #menuButton {
        display: block;
        height: calc(var(--buttonHeight)*.75);
    }

    h1 {
        font-size: 6vw;
    }

    .spacer {
        font-size: 100%
    }
}


/* * {
    background: #000 !important;
    color: #0f0 !important;
    outline: solid #f00 1px !important;
}  */