body{
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;

    background-color: whitesmoke;

    -webkit-touch-callout: none;
    -webkit-user-select: none; 
     -khtml-user-select: none; 
       -moz-user-select: none; 
        -ms-user-select: none; 
            user-select: none;
}




/* main page---------------- */

.name{
    position: absolute;
    min-width: 200px;
    margin: 0;
    padding: 0 3vw;
    top: 1vh;
    left: 3vw;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2em;
    

    border: 6px solid black;
    color: black;

    border-radius: 2%;
    cursor: default;
  
}



.quotes{
    position: absolute;
    width: 12vw;
    right: 3vw;
    top: 5vh;

    padding: 3vw;
    border: 6px solid black;
    color: black;

    cursor: default;
}



.menu_BTN *{
    position: absolute;
    height: fit-content;
    left: 3vw;
    top: 15vh;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    text-decoration: underline;
    line-height: initial;
    transition: 0.3s;
    cursor: pointer;
    font-family: 'Gemunu Libre', sans-serif;
    font-size: 2vw;
}
.menu_BTN *:hover{
    background: #c29b9b;

}





/* master menu ---------------------*/


@keyframes menu_animation {

    0%{
        width: 0%;
    }
    100%{
       width: 100%;
    }
}


.menu_container{
    position: fixed;
    width: 100%;
    height: 100%;

    background: black;

    font-family: 'Gemunu Libre', sans-serif;

    display: grid;
    grid-template-columns: 50% 50%;

    transition: 0.4s;
    z-index: 100;
}


.clicked{
    color: blue;
}

.main_menu{
  
    display: grid;
    grid-template-rows: 20% 80%;
    text-transform: uppercase;

    font-size: 10vw;
    line-height: 67%;

}


@keyframes menu_elements {
    0%{
        transform: translateX(-0.5em);
    }
    100%{
        transform: translateX(0);
    }
}

.main_menu *{
    width: fit-content;
    max-height: fit-content;
   
   
}
.main_menu * p{

    padding-left: 5px;
    margin: 0;
    width: fit-content;
    height: fit-content;
    cursor: pointer;
    transition: 0.1s;
    text-shadow: 0.4vw 0.4vw #2d5580;

}

.main_menu * p:hover{
   
    color: #c29b9b;
}

.first_menu{
    display: flex;
    flex-direction: column;
}
.close p{
    
    color: #c29b9b;
    line-height: initial;
    font-size: 2vw;
    text-shadow: none;
    top: 40px;
    position: relative;
}



.about{
   animation: menu_elements 0.6s ;
   color: #373737;
}
.practice{
    animation: menu_elements 1s ;
    color: #373737;

 }
 .contact{
    animation: menu_elements 1.4s ;
    color: #373737;
 }
 
 



.practice_menu,
.contact_list{

    height: fit-content;
    position: relative;
    padding-top: 100px;

    flex-direction: column;

    text-transform: uppercase;
    color: #c29b9b;
    font-size: 1.4vw;

    transition: 0.3s;
    line-height: 100%;



}
.practice_menu *:hover{
    width: fit-content;
    cursor: pointer;
    color: #2d5580;

}

.worklist,
.exhibitionprojectlist,
.webdevelopmentlist{
 
    padding: 0;
    transition: 0.2s;
    text-decoration: none;

    z-index: 100;
 
 
}
.worklist ul,
.exhibitionprojectlist ul,
.webdevelopmentlist ul{
  
    margin: 10px 0 10px 0;
    color: #ffffff;

}








@media only screen and (max-width: 700px) {
    .quotes{
        display: none;
    }

    .menu_button{
        position: fixed;
        bottom: 0px;
        margin: 0;
        width: 100%;
        left: 0;
        height: fit-content;

        display: flex;
        flex-direction: row;

    }


  }

