.carrusel {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding-top: 60px;
    padding-bottom: 20px;
}

#imagen {
    width: 100%;
    height: 600px;
    background-size: cover;
    border-radius: 20px;
}

.btn-carrusel-izquierdo {
    width: 70px;
    border-radius: 0px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background-color: transparent;
    font-size: 3rem;
    color: black;
}

.btn-carrusel-derecho {
    width: 70px;
    border-radius: 0px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    background-color: transparent;
    font-size: 3rem;
    color: black;
}

.btn-carrusel-izquierdo:hover {
    color: #ccc;
}

.btn-carrusel-derecho:hover {
    color: #ccc;
}

.controles {
    text-align: center;
}

.btn-control {
    background-color: rgb(190,190,190);
}

@media(width < 750px) {
    #imagen {
        height: 100px;
    }
}