
.site-header {
    display: flex;
    position: fixed; 
    top: 0; 
    width: 100%;
    height: 80px;    
   }

.navlist {
    position: absolute;
    right: -200%;
    width: 60%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; 
    flex-direction: column;
    transition: all 0.55s ease;
    list-style: none;
    background-color: rgb(255, 255, 255) ;
    z-index: -1;
    border-left: 10px solid; /* Puedes cambiar el ancho y el estilo del borde según tus preferencias */
    border-top: none; /* Elimina el borde superior */
    border-right: none; /* Elimina el borde derecho */
    border-bottom: none; /* Elimina el borde inferior */
}
  
  .navlist a {
    color: black;
    display: block;
    font-size: 25px;
    text-decoration: none;
    text-transform: uppercase;
    align-items: center;
    margin: 25px;
    font-family: 'Alfa Slab One', serif;
    font-weight: 100;
  }
  
  .navlist a:hover {
    transition: all 0.1s ease;
    color: rgb(22, 22, 22);
  
       
  }
  .navlist.open {
    right: 0;
    transition: all 0.55s ease;
  }

  
  .menu-icon div {
    width: 30px;
    height: 4px;
    background: rgb(255, 255, 255);
    margin: 6px;
    transition: all 0.4s ease;
    border-radius: 5px;
    margin-right: 10px;
    }


  .menu-icon{
    display: block;
    position: absolute;
    cursor: pointer;
    right: 3%;
    top: 25%;
    z-index: 2;
    transition: all 0.25s ease;
   }

  .toggle .line1 {
    transform: rotate(-45deg) translate(-8px, 6px);
    background-color: rgb(0, 0, 0);
  }
  .toggle .line2 {
    transition: all 0.1s ease-in-out;  
    width: 0;
    background-color: rgb(0, 0, 0);
  }
  .toggle .line3 {
    transform: rotate(45deg) translate(-8px, -6px);
    background-color: rgb(0, 0, 0);
  }


  /* ---- PANTALLAS EXTRA LARGE ------ */

@media screen and (min-width: 1200px) {
  
    .nombre {
      font-size: 65px;
      }
      .navlist {
        width: 15%;
        border-left: 15px solid;
       } 
   
   
  }