/*Menu CSS*/
.menu{
    background-color: rgb(180, 76, 76) ;
    margin-bottom:none;
    position:relative;
    z-index:1;
    width:100%;
}
.home{
    border-right: 2px solid rgb(53, 1, 1);
    border-left: 2px solid rgb(53, 1, 1);
    margin-left: 5px;
}
.menu a{
    color: black;
    text-align: center;
    text-decoration: none;
    padding: 18px;
    font-size: 18px;
    font-family: Times;
}
.menu a:hover{
    background-color: rgb(131, 72, 72);
}
.stick{
    position: fixed;
    z-index: 1;
    top: 0;
    width: 100%;
}
div.laptop{
    background-color: rgb(180, 76, 76) ;
    margin-bottom:none;
    position:relative;
    z-index:0;
    width:100%;
    display: flex !important;
    flex-direction: row;
}

div.smallScreen{
    display: none !important;
}


#topFixed{
    position: fixed;
    top:0;
}

@media only screen and (max-width: 650px){
    .menu{
        text-align: center;
        flex-direction: column;
        position: relative;
        min-height: 56px;
    }
    .icon{
        max-height: 20px;
        position:absolute;
    }
    .icon:hover{
        cursor: pointer;
    }
    div.laptop{
       display: none !important;
    }
    div.smallScreen{ 
        display: flex !important;
    }
    #links{
        display: none;
        position: relative;
        flex-direction: column;
        z-index: 3;
        margin-left: auto;
        margin-right: auto;
        margin-top: 60px;
        width:100%;
    }
    .home{
        margin-left: 0px;
        border: none;
        width: 100%;
        z-index: 3;
    }
    #links a{
        display:block;
        font-size:17px;
        padding: 12px;
        background-color: rgb(131, 72, 72);
        width: 100%;
        margin-bottom: 1px;
        z-index: 3;
    }
}
