@import url('https://fonts.googleapis.com/css2?family=Quintessential&display=swap');
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

header{
    background-color: rgb(165, 194, 238);
    border-radius: 4px;
    width: 98%;
    height: 14vh;
    margin: auto;
    margin-top: 5px;
    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-logo{
    width: 30%;
}

.header-header-logo img{
    width: 90%;
}
.header-header-title{
    font-family: 'Quintessential', cursive;
    font-size: 14px;
    width: 70%;
    margin: auto;
}
.header-header-title h1{
    display: flex;
    flex-direction: column;
    text-align: center;
}
/*-----------------nav------------------*/
nav{
    background-color: rgba(195, 178, 241, 0.8);
    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;
    }
    .header-header-title h1 p{
        margin-left: 10px;
    }
}
   /*-----------------554----------------------------------*/
   @media (min-width: 554px) {
    .header-header-logo img{
        width: 72%;
    }
   }
    
    /*-----------------600----------------------------------*/
@media (min-width: 600px) {
    .header-header{
        width: 100%;
    }
    .header-header-logo{
        width: 25%;
    }
    .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: 2px 10px;
        }
        .header-nav-logo-hamb{
            display: none;
        }
    }
    /*-----------------674----------------------------------*/
@media (min-width: 674px){
    .header-header-logo{
        text-align: center;
    }
    .header-header-logo img{
        width:65%;
    }
}
    /*-----------------738----------------------------------*/
    @media (min-width: 738px){
      
        .header-header-logo img{
            width:60%;
        }
    }

    /*-----------------816----------------------------------*/
    @media (min-width: 816px){
        .header-header-logo img{
            width:55%;
        }
        .header-header-title{
            font-size: 22px;
            width: 75%;
        }
    }
    /*-----------------886----------------------------------*/
    @media (min-width: 816px){
        .header-header-logo img{
            width:50%;
        }
    }
     /*-----------------942----------------------------------*/
     @media (min-width: 942px){
        .header-header-logo img{
            width:48%;
        }
    }
    /*-----------------1008----------------------------------*/
    @media (min-width: 1008px){
        .header-header-logo img{
            width:42%;
        }
    }
     /*-----------------1132----------------------------------*/
     @media (min-width: 1132px){
        .header-header-logo img{
            width:36%;
        }
    }
    /*-----------------1322----------------------------------*/
    @media (min-width: 1322px){
        .header-header-logo img{
            width:30%;
        }
    }
    /*-----------------1583----------------------------------*/
    @media (min-width: 1583px){
        .header-header-logo img{
            width:27%;
        }
    }
    
    
    
    
    
    
    
    
    
    






