body {
    font-family: 'Times New Roman', Times, serif;
    font-size: small;
}

.carrusel {
    position: relative;
    width: 900px;
    overflow: hidden;
    margin: auto;
}

.carrusel-enlaces {
    display: flex;
    transition: transform 3s ease; /* Transición más lenta */
}

.carrusel-enlaces a {
    padding: 8px 10px;
    text-decoration: none;
    color: rgb(9, 32, 243);
    background-color: rgba(10, 120, 130, 0.1);
    margin: 0 2px;
    border-radius: 15px;
    flex: 0 0 auto; /* No permitir que los enlaces se compriman */
    white-space: nowrap; /* Evitar que los enlaces se rompan en varias líneas */
}

button {
    position: absolute;
    top: 80%;
    transform: translateY(-50%);
    background-color: rgba(10, 120, 30, 0.2);
    color: rgb(190, 248, 83);
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1; /* Asegurarse de que los botones estén por encima */
}

.prev {
    left: 5px;
}

.next {
    right: 5px;
}
