#menu{
    z-index: 4;
    position: fixed; top: 0; left: 0;
    height: 60px; width: 100%;
    transition: 0.5s;
}
a:focus{
    outline: none;
}
#menuCont{
    box-sizing: border-box; display: table;
    width: 1200px; height: 100%;
    margin: auto;
}
.menuBtn{
    box-sizing: border-box;
    float: left;
    height: 100%;
    padding: 0px 10px 0px 10px;
    font-family: built titling light; letter-spacing: 2px; font-size: 30px; color: rgb(120,120,120); line-height: 60px;
    transition: line-height 0.5s, color 0.05s;
}
.menuBtn:hover{
    color: rgb(230,230,230) !important;
}

#title{
    margin-top: 10px;
}
#titleShortcuts{
    z-index: 5;
}

/*---BUTTON---*/
.button{
    float: left;
    margin-right: 5px;
    background: rgb(40,40,40) !important;
    color: white !important;
}
.buttonOverlay{
    background: rgb(80,80,80) !important;
}
.buttonTextCont{
    color: white !important;
}

@media screen and (max-width: 1400px){
    #menuCont{
        width: 980px;
    }
}
@media screen and (max-width: 1000px){
    #menuCont{
        width: 100%;
    }
}