@font-face {
    font-family: Acre;
    src: url(resources/Acre.otf)
}

.flex-vertical {
    display: flex;
    flex-direction: column;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.btn {
    display: block;
    width: max-content;
    text-decoration: none;
    color: #ffffff;
    background-color: #016E95;
    padding: 15px;
    border-radius: 35px;
    font-size: 50px;
    margin: 40px auto;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    text-align: center
}

body {
    margin: 0;
    padding: 0;
    width: 1920px;
    font-family: Acre, Helvetica;
    background-color: rgb(255, 255, 255);
    transform-origin: top left;
}

#topnav {
    background-color: #ffffff;
    height: 150px;
    width: 100%;
    position: relative;
}

#topnav img {
    position: absolute;
    height: 120px;
    margin-top: 15px;
    margin-left: 50px;
}

#navmenu {
    position: absolute;
    right: 0px;
    top: 50px;
    z-index: 5;
}

#topnav a {
    text-decoration: none;
    color: #707070;
    font-size: 40px;
    display: inline-block;
    text-align: center;
    width: 150px;
    margin: 0px 0px;
    padding: 0;
    text-transform: uppercase;
}

#top1 {
    position: absolute;
    background-color: #E6E6E6;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 465px;
    border-radius: 30px 0px 0px 0px;
}

#top2 {
    position: absolute;
    background-color: #bfbfbf;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 310px;
    border-radius: 30px 0px 0px 0px;
}

#top3 {
    position: absolute;
    background-color: #999999;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 155px;
    border-radius: 30px 0px 0px 0px;
}

#footer {
    height: 150px;
    text-align: center;
    background-color: #ffffff;
}

#footer img {
    width: 50px;
    padding: 50px 10px;
}

#footer p {
    margin-top: -40px;
}

#menubtn {
    visibility: hidden;
}

#menuoverlay {
    display: none;
}

.noa {
    color: inherit;
    text-decoration: inherit;
}


@media only screen and (max-width: 900px) {
    body {
        width: 100%;
    }

    #topnav {
        height: 130px;
        width: 100%;
        position: relative;
    }

    #topnav img {
        position: absolute;
        height: 90px;
        margin-top: 20px;
        margin-left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
    }

    #navmenu {
        visibility: hidden;
    }

    #topnav a {
        visibility: hidden;
    }

    #top1 {
        visibility: hidden;
    }

    #top2 {
        visibility: hidden;
    }

    #top3 {
        visibility: hidden;
    }

    #footer {
        height: 150px;
        text-align: center;
        background-color: #ffffff;
    }

    #footer img {
        width: 50px;
        padding: 50px 10px;
    }

    #menubtn {
        visibility: visible;
        position: absolute;
        top: 40px !important;
        right: 0px !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 50px !important;
        width: 50px !important;
    }

    #menuoverlay {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.6);
        width: 100vw;
        height: 100%;
        z-index: 50;
        text-align: center;
        visibility: hidden;
    }

    #menuoverlay a {
        color: #ffffff;
        text-decoration: none;
        font-size: 20vw;
        text-shadow: 0vw 2vw 3vw rgba(0, 0, 0, 0.16);
    }

    #cancelmenu {
        position: absolute;
        right: 25px;
        top: 42px;
        height: 50px;
        width: 50px;
    }
}