.marquee {
    width: 100%;
    line-height: 15px;
    background-color: #373935;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 0.8rem;
}

.marquee p {
    word-spacing: 8px;
    display: inline-block;
    padding-left: 100%;
    animation: marquee 35s linear infinite;
}

.marquee a {
    display: inline-block;
    padding: 2px 15px;
    margin: 5px;
    background-color: #007BFF; /* Color azul */
    color: white; /* Texto blanco */
    text-decoration: none; /* Quita el subrayado */
    border-radius: 5px; /* Bordes redondeados */
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.marquee a:hover {
    background-color: #0056b3; /* Cambia el color al pasar el mouse */
}

.marquee p:hover {
    animation-play-state: paused; /* Detiene la animación al pasar el mouse */
}

@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

@media screen and (min-width: 768px) and (min-height: 832px ) {
    .marquee {
        line-height: 30px;
        font-size: 1rem;
    }
}
