@font-face {
    font-family: 'Mazzard-ExtraLight';
    src: url(../fonts/Mazzard/MazzardH-ExtraLight.otf);
}

.overlay-menu {
    width: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9;
    position: fixed;
    left: 0;
    top: 0;
    overflow-x: hidden;
    transition: all 0.5s;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overlay-menu a{
    padding: 8px;
    font-family: 'Mazzard-ExtraLight';
    text-decoration: none;
    color: #fff;
    display: block;
    font-size: 20px;
    transition: all 0.3s;
}

.overlay-menu .dstk {
    background-color: #0093E5;
    width: 80%;
    height: 20px;
    border-radius: 25px;
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-menu .dstk:hover{
    color: #000000;
}

.overlay-menu a:hover, .overlay-menu a:focus{
    color: #0093E5;
}

.overlay-menu .closebtn{
    position: absolute;
    top: 25px;
    right: 45px;
    font-size: 60px;
}

.nav-button{
    margin-right: 110px;
    background: none;
    border: none;
    color: #0093E5;
    font-size: 40px;
    cursor: pointer;
}

@media screen and (min-width: 835px) {
    .nav-button{
        display: none;
    }
}

@media screen and (max-width: 440px) {
   
    .nav-button {
        margin-right: 40px;
        background: none;
        border: none;
        color: #0093E5;
        font-size: 40px;
        cursor: pointer;
    }
}