#video-slider {
    display: flex;
    width: 90%;
    margin: auto;
   
    padding: 10px;
    justify-content: space-between;
   
   
}

.video-item {
    width: 300px;
    
    background: #021d34;
    
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.video-item:hover {
    transform: scale(1.05);
}

.video-item h3 {
    font-family: 'Montserrat', sans-serif;
    
    font-size: 13px;
    color: white;
    text-transform: uppercase;
    padding: 5px;
    text-align:center;
}
ju
.video-item p {
    font-size: 14px;
    color: #666;
}

.video-item iframe {
    width: 100%;
    height: 220px;
    border: none;
   
}

#prev-btn,
#next-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

#prev-btn:hover,
#next-btn:hover {
    background-color: #2980b9;
}
.botones{
    display: flex;
}