@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header{
    font-family: 'Roboto', sans-serif;
    z-index: 1;
    position: relative;
}
/*-----------------nav------------------*/
nav{
    background-color: rgba(209, 176, 183, 0.8);
    border-radius: 4px;
    width: 80%;
    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: rgb(255, 255, 255);
        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{
        background-color: rgb(255, 255, 255);
        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%;
        position: absolute;
        top: 100px;
        left: 85%;
    }
    .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);
    }
       /*-----------------500----------------------------------*/
       @media (min-width: 500px){
        .header-nav-logo-hamb{
            top: 110px;
            left: 88%;
        }
     }
      /*-----------------800----------------------------------*/
      @media (min-width: 800px){
        .header-nav-logo-hamb{
            top: 130px;
        }
     }
     /*-----------------850----------------------------------*/
@media (min-width: 850px) {
    nav{
        width: 112%;
        margin-left: 94%;
        display: flex;
        flex-direction: column;
        /*--position: absolute;
        top: 105%;
        left: -19%;--*/
        transform: scale(0.9);
        transition: 1s;
        box-shadow: 3px 3px 3px black;
    }
    .header-nav-content{
        display: flex;
        justify-content: space-around;
    }
    /*   
    .header-nav-boton-a a{
          /*---  display: inline-block;
            width: 170px;  --*/
        /*   padding: 2px 25px;
        }
        */

        .header-nav-boton-a a{
            background-color: rgb(255, 255, 255);
            border-radius: 3px;
            color: black;
            text-decoration: none;
            display: inline-block;
             margin-top: 5px;
             padding: 0px 8px;
             text-align: center;
             line-height: 30px;
             box-shadow: 2px 2px 2px black;
             transition: 500ms;
        }
        .header-nav-logo-hamb{
            display: none;
        }
    }