body{
    padding: 0;
    margin: 0;
    background-color: rgb(48, 46, 46);
}
#Logo{
    height: 100px;
    width: auto;
    background-color: transparent;  
    animation: logoBailando infinite 5s;

}

@keyframes logoBailando { 
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
    
    
}
#Menu{
    background-color: black;
    width: 100%;
    color: aliceblue;
    border: solid rgb(52, 51, 51);
    
    
}

#navbar{
    display:flex;
    flex-direction: row;
    width: 100%;
    background-color: rgba(0, 255, 255, 0);
}
#Carrusel{
    width: 100%;
    
    transition: all 1000ms linear;

}

.contenedorImagen{
    background-color: black;
    display: flex;
    /* align-items: center;
    justify-content: start; */
    
    overflow: hidden;
     height: 700px; 
    width: 100%;
    >img{
        object-fit: initial;
    }
    transform: scale(0.97);
    border-radius: 5px;
}



.seccion{
    width: 100%;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    gap:10px;
    img{
        width: 100%;
    }
}



#Menu2{
    text-align: center;
    background-color: rgb(0, 0, 0);
    color: azure;
}



.contenedorVideo{
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: center;
    justify-content: center;
    div{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        img{
            width: 100%;
            height: auto;
        }
    }
    margin-bottom: 300px;
    margin-top: 20px;
    transform: scale(0.95);
    border-radius: 5px;
}