/*esto es un comentario
*/
*{
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    padding: 90px 20px 0;
}

.header{
    background-color: black;
    height: 80px;
    position: fixed; /*se mantiene fijo el header*/
    width: 100%;
    top: 0;
    left: 0;
}

.navbar{
    display: flex;
    justify-content: space-between;

    max-width: 992px;
    margin: 0 auto;
}

.nav-link{
    color: white;
    text-decoration: none;
}

.logo{
    font-size: 25px;
    font-weight: bold;
    padding: 0px 0px 0px 40px;
    line-height: 80px;
    width: max-content;
}

.nav-menu{
    display: flex;
    margin-right: 40px;
    padding: 0px 0px;
    list-style: none;

}

.nav-menu-item{
    font-size: 15px;
    margin: 0 10px;
    line-height: 80px;
    text-transform: uppercase;
    width: max-content;
}

.nav-menu-link{
    padding: 8px;
    border-radius: 10px;
}

.nav-menu-link:hover,
.nav-menu-link_active{
    background-color: green;
    transition: 0.5s;
}

.nav-toggle{
    color: green;
    background: none;
    border: none;
    font-size: 30px;
    padding: 0 20px;
    line-height: 60px;
    cursor: pointer;

    display: none;
}

@media (max-width: 768px){
    body {
        padding-top: 70px;
    }
    
    .header{
        height: 60px;
    }   
    
    .logo{
        font-size: 20px;
        padding: 0 20px;
        line-height: 60px;
    }
    
    .nav-menu{
        left: 0;
        flex-direction: column;
        align-items: center;
        margin-right: 40px;
        background-color: #2c3e50; 
        position: fixed; 
        left: 0;
        top: 60px;
        width: 100%;
        padding: 20px 0;

        height: calc(100% - 60px);
        overflow-y: auto;

        left: 100%;
        transition: 0.3s;
    }
    
    .nav-menu-item{
        line-height: 60px;
    }
    
    .nav-menu-link:hover,
    .nav-menu-link_active{
        background: none;
        color:black;
    }
    
    .nav-toggle{
        display: block;
    }
    
    .nav-menu_visible{
        left: 0;
    }
   	  
    .nav-toggle:focus:not(:focus-visible){
        outline: none;
    }

 
}
