@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300&display=swap');
/* 
*{
    font-family: 'Poppins', sans-serif;
} */

body {
  padding: 0px;
  margin: 0px;
  min-height: 100vh;
  font-family: 'Cabin', Sans-serif;
}

a:visited, a:link, a:active{
    text-decoration: none;
}

#domtecMenu{
    color: #75A2A2;
    transition: 0.5s;
}

#domtecMenu:hover{
    color: #00817a;
}

.navBar{
    width: auto;
    height: 150px;
    box-shadow: 0px 10px 10px #1e1e1e20;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    background-color: #1E1E1E;
    
}

.navBar a{
    /* margin: 5%; */
    font-size: 1.3em;
    color: white;
    transition: 0.3s;
}

.navBar a:hover{
    color: #9C2828;
}

.logoContainer{
    width: 175px;
    height: 75px;
}

.logoContainer img{
    width: 100%;
    height: 100%;
}


.mobileNavBar{
    width: 100%;
    height: 150px;
    box-shadow: 0px -10px 10px #1e1e1e;
    display: none;
    background-color: #1E1E1E;
    
    /* flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; */
}

.mobileNavBar img{
    width: 90px;
    height: 100px;
}

.sideBar{
    height: 100vh;
    width: 0%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #1E1E1E;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    box-shadow: 0px 0px 10px #1e1e1e50;
}

.sideBar a{
    font-family: 'Cabin', Sans-serif;
    color:white;
}

.unordL{
    list-style-type: none;
}

.elementL{
    margin-top: 10%;
}

.sideBar .closeButton{
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.hamburguer{
    position: fixed;
    top: 50px;
    left: 20px;
    display: none;
    color: white;
}



@media screen and (max-width: 750px) {
    .navBar{
        display: none;
    }

    .mobileNavBar{
        width: 100%;
        height: 150px;
        box-shadow: 0px 5px 10px #1e1e1e50;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .hamburguer{
        position: absolute;
        top: 50px;
        left: 20px;
        display:initial;
    }
    
}

