/* menu de navegación */
#menu-bar{
    display: none;
}
header label{
    float: right;
    font-size: 28px;
    margin: 6px 0;
    cursor: pointer;
}
.menu{
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: black;
    transition: all 0.5s;
    transform: translateX(-100%);
}
.menu a{
    display: block;
    color: white;
    height: 50px;
    text-decoration: none !important;
    padding: 29px;
    border-bottom: 1px solid #990000;
}
.menu a:hover{
    background: #111111;
}
#menu-bar:checked ~ .menu{
    transform: translateX(0%);
}
/*animaciones*/
.animate__lightSpeedInLeft{
    animation-delay: 1s;
    animation-duration: 2s;
  }
  .animate__zoomIn{
    animation-delay: 1s;
    animation-duration: 5s;
  }
/* Responsive- aquí se adapta la letra */
@media (min-width:1024px){
    .menu{
        position: static;
        width: auto;
        height: auto;
        transform: translateX(0%);
        float: right;
        display: flex;
    }
    .menu a{
        border: none;
    }
    header label{
        display: none;
    }
}