* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    font-family: 'Montserrat',sans-serif;
    overflow-x: hidden;
    height: 100%;
}

/* body {
    display: flex;
    flex-direction: column;
} */

#logo {
    position: absolute;
    left: 0;
    top: 0;
}

.wrapper {
    position: relative;
    min-height: 100vh;
}

.overlay {
    display: none;
}

header {
    display: flex;
    width: 100vw;
    height: 90px;
    background-color: #00a69c;
}

.content {
    flex: 1 0 auto;
    padding: 20px;
    min-height: 76.52vh;
}

.logo {
    height: 50px;
    margin: 20px 30px;
    float: left;
}

.menu {
    margin: 30px auto;
    margin-right: 5%;
}

.openNav {
    visibility: hidden;
}

.menuBtn, .dropBtn {
    width: max-content;
    color: white;
    text-decoration: none;
    font-size: 25px;
    margin: 10px;
}

.dropDownContent {
    visibility: hidden;
}

.menuBtn:hover {
    color: green;
}

footer {
    text-align: center;
    color: white;
    background-color: #00a69c;
    padding: 20px;
    flex-shrink: 0;
    width: 100%;
}

footer p {
    width: 100%;
}
#footerImg {
    width: 75px;
    height: auto;
    margin: auto 0;
}



@media screen and (max-width: 699px) {

    .openNav {
        float: right;
        position: absolute;
        right: 0;
        width: 10%;
        color: white;
    }

    .openNav {
        visibility: visible;

    }

    .menuBtn {
        display: none;
    }

    .overlay {
        display: block;
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 1;
        left: 0;
        top: 0;
        background-color: #00a69c;
        overflow-x: hidden;
        transition: .1s;
        text-align: center;
    }

    .overlayContent{
        position: relative;
        top: 20%;
        width: 100%;
        text-align: center;
        margin-top: 40px;
        margin: auto;
        left: 50%;
        transform: translate(-50%);
    }

    .overlay a:hover, .overlay a:focus {
        color: #f1f1f1;
    }

    .overlay .closeBtn {
        position: absolute;
        top: 20px;
        right: 45px;
        font-size: 60px;
    }

    .overlayBtn {
        padding: 8px;
        text-decoration: none;
        font-size: 36px;
        color: white;
        display: block;
        transition: 0.3s;
    }

    .closeBtn {
        color: white;
        text-decoration: none;
    }

}
