@import "colors.css";

div {
    font-family: arial, sans-serif;
}

h2 {
    font-size: 3em;
    font-weight: bold;
}

h3 {
    font-size: 2em;
    color: #e2e2e2;
    font-weight: lighter;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

h4 {
    font-size: .8em;
    font-weight: lighter;
    text-transform: uppercase;
    color: #e2e2e2;
    word-spacing: .25em;
    letter-spacing: .25em;
}

.flex-container {
  display: flex;
}

body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: #262626;
}

.v-flex {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

#header {
    background-color: #FFFFFF;
    flex-grow: 0;
}

#body {
    flex-grow: 1;
}

#footer {
    flex-grow: 0;
    margin-bottom: 0px;
    display: flex;
    align-items: stretch;
    width: 100%;

    border-top: 2px solid var(--logo-color);
}

.footbox {
    margin: auto;
    text-align: center;
}

@media screen and (orientation:landscape) {

    #menu {
        position: absolute;
        right: 30px;
        top: 60px;
    }

    #menu a {
        text-decoration: none;
        color: #666666;
        margin-right: 50px;
        font-size: 1.1em;
    }

    #menu a:hover {
        color: var(--logo-color)
    }

    #main-logo {
        margin: 30px;
        height: 90px;
        vertical-align: middle;
    }

    #footer {
        flex-direction: row;
        height: 150px;
    }

}

@media screen and (orientation:portrait) {

    #header {
        text-align: center;
    }

    #menu {
        display: block;
        margin: 30px;
        padding-bottom: 30px;
    }

    #menu a {
        text-decoration: none;
        color: #666666;
        margin-right: 50px;
        font-size: 1.1em;
    }

    #menu a:hover {
        color: var(--logo-color)
    }

    #main-logo {
        margin: 30px;
        height: 90px;
        vertical-align: middle;
    }
    #footer {
        flex-direction: column;
        height: 200px;
    }
}

#body {
    width: 100%;
    margin-left: 0px;
    text-align: center;
    color: white;
    padding-top: 3em;
}

#closing-chevron {
    position: relative;
    top: -80px;
    left: 120px;
    transform: rotate(180deg);
    width: 150px;
}

#opening-chevron {
    position: relative;
    bottom: -80px;
    right: 120px;
    vertical-align: bottom;
    width: 150px;
}
