
    
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

header{
    background-color: rgb(226, 202, 93);
    border-radius: 4px;
    width: 98%;
    margin: auto;
    margin-top: 5px;
    padding: 8px;
    z-index: 1000;

    display: flex;
    justify-content: space-around;

    box-shadow: 2px 2px 2px black;
    position: relative;


}
/*-----------------------header-header-------------------------------*/
.header-header{
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: row;
}

.header-header-title{
    font-size: 14px;
    width: 70%;
    margin: auto;
    display: flex;
    flex-direction: column;
}
.header-header-title {
    text-align: center;
} 

/*-----------------nav------------------*/
nav{
    background-color: rgb(240, 223, 147);
    border-radius: 4px;
    width: 40%;
    padding: 0px 8px 8px 8px;
    display: flex;
    justify-content: space-around;
    flex-direction: column;

    position: absolute;
    top: 105%;
    left: -100%;
    transform: scale(0.2);
    transition: 800ms;
    box-shadow: 3px 3px 3px black;
    }
    .nav_visible{		
        left: 1%;
        transform: scale(1);
    }
    .header-nav-boton-a a{
        background-color: white;
        border-radius: 3px;
        color: black;
        text-decoration: none;
        display: inline-block;
         width: 100%;
         height: 30px;
         margin-top: 5px;
         text-align: center;
         line-height: 30px;
         box-shadow: 2px 2px 2px black;
         transition: 500ms;
    
    }
    .header-nav-boton-a a:hover{
        background-color:beige;
        transform: scale(1.1);
    }
    
    

/*----------------logo hamburguesa----------------------*/
    .header-nav-logo-hamb{
        width: 15%;
        margin: auto;
        margin-right: 2%;
        text-align: end;
    }
    .header-nav-logo-hamb-imagen{
        width: 50px;
        cursor: pointer;
        transition: 500ms;
    }
    .header-nav-logo-hamb img{
        background-color: white;
        width: 100%;
        padding: 6px;
        box-shadow: 2px 2px 2px black;
    
    }
    .header-nav-logo-hamb-imagen:hover{
        transform: scale(1.1);
    
    }
    
    /*-----------------526----------------------------------*/
   
    

       /*-----------------540----------------------------------*/
@media (min-width: 540px) {
    .header-header{
        width: 75%;
    }
    
    .header-header-title h1{
        display: flex;
        flex-direction: column;
        text-align: center;
    }
 
   
    
    /*-----------------600----------------------------------*/
@media (min-width: 600px) {
    .header-header{
        width: 100%;
    }
    
    .header-header-logo img{
        width: 65%;
    }
    .header-header-title{
        font-size: 20px;
        width: 75%;
    }
    .header-header-title h1{
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    

    nav{
        width: 100%;
        margin: auto;
        margin-left: 100%;
        display: flex;
        flex-direction: row;

        /*--position: absolute;
        top: 105%;
        left: -19%;--*/
        transform: scale(0.9);
        transition: 1s;
        box-shadow: 3px 3px 3px black;
    }
  
        .header-nav-boton-a a{
          /*---  display: inline-block;
            width: 170px;  --*/
           padding: 1px 25px;
        }
        .header-nav-logo-hamb{
            display: none;
        }
    }
   
   
    /*-----------------816----------------------------------*/
    @media (min-width: 816px){
  
        .header-header-title{
            font-size: 22px;
            width: 75%;
        }
    }
 
  
 
   