html {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

header {
    margin-top: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.headerlogo {
    width: 10%;
    border-radius: 20px;
}

.headerlogobg {
    width: 40%;
    border-radius: 10px;
}

.headertitle {
    color: #164194;
    font-weight: bold;
}

.headersubtitle {
    color: #2C2933;
    font-weight: bold;
    text-align: center;
}


body {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #C6C6C6;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 120vh;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    overflow-y: scroll;
    padding-bottom: 10vh;
}

body p {
    text-align: center;
}

.constructionnote {
    color: red;
    font-weight: bold;
}

.addressinfo {
    color: black;
    font-weight: normal;
}

.historicnote {
    color: grey;
    font-weight: normal;
}

.contactinfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.contactinfo a {
    color: #2C2933;
    text-decoration: none;
}

.contactinfo a:hover,
.contactinfo a:active {
    color: #164194;
    text-decoration: underline;
}

footer {
    padding: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0;
    background-color: #2C2933;
    color: #C6C6C6;
    height: 8vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: row;
    position: fixed;
    bottom: 0;
    /* margin-top: 80px; */
}

footer a {
    /* flex: 50%; */
    color: #C6C6C6;
}

footer a:hover,
footer a:active {
    color: #164194;
    text-decoration: underline;
}

@media only screen and (max-width: 1380px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    .headerlogo {
        border-radius: 10px;
        width: 30%;
    }

    .headerlogobg {
        border-radius: 10px;
        width: 80%;
    }

    footer {
        padding: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
        min-height: 8vh;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        -moz-column-gap: 10px;
        column-gap: 15px;
        row-gap: 5px;
        position: fixed;
        bottom: 0;
        box-sizing: border-box;
    }
}