.container.provider {
    background-color: rgba(0, 0, 0, 0.849);
    padding: 1rem;
    border-radius: 1rem;
}

.container.content-provider {
    padding: 0rem;
}

.title h1 {
    text-align: center;
    color: white;
    margin: 0;
    margin-top: 9rem;
    text-shadow: 1px 1px 10px rgb(175, 0, 0);
    font-family: "Black Ops One", system-ui;
}

.provider-game {
    background-color: rgba(0, 0, 0, 0.774);
    border: 2px solid red;
    padding: 1rem;
    scrollbar-width: thin;
    scrollbar-color: red black;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.provider-game img {
    width: 100%;
    height: auto;
    max-height: 150px;
    min-height: 17vh;
    border-radius: .5rem;
    animation: .8s;
    transition: all 0.3s ease;
}

.provider-game img:hover {
    box-shadow: 0px 0px 10px red;
}

.text-muted {
    font-size: 24px;
    margin: 0;
    padding: 1rem;
    font-family: "Afacad Flux", sans-serif;
}

@media screen and (max-width: 480px) {
    .container.provider {
        background-color: rgba(0, 0, 0, 0.849);
        padding: 0rem;
        border-radius: 1rem;
    }

    .container.content-provider {
        padding: 1rem;
    }

    .provider-game {
        background-color: rgba(0, 0, 0, 0.774);
        border: 2px solid red;
        gap: 1rem;
        padding: .5rem;
        scrollbar-width: thin;
        scrollbar-color: red black;
        border-radius: 10px;
        margin-bottom: 2rem;
    }

    .title h1 {
        text-align: center;
        color: white;
        margin: 0;
        margin-top: 0rem;
        text-shadow: 1px 1px 10px rgb(175, 0, 0);
        font-family: "Black Ops One", system-ui;
    }
}
