#comoJogar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin: 0rem 2rem;

    color: black;

    gap: 2rem;
}

#comoJogar #text {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 3rem;
}

#comoJogar #text h3 {
    text-transform: uppercase;
    font-family: Nunito;
    font-size: clamp(16pt, 2vw, 25pt); 
    font-weight: bold;
}

#comoJogar #text h3::after {
    display: block;
    content: "";

    position: relative;
    left: 3rem;

    width: clamp(50px, 50%, 100%); 
    height: clamp(3px, 0.5vw, 5px); 

    background-color: white;

    border-radius: 10px;
}

#comoJogar #text h1 {
    text-transform: uppercase;
    font-family: Nunito;
    font-size: clamp(18pt, 3vw, 29pt); 
    font-weight: bold;
}

#comoJogar ol {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    counter-reset: list-counter;
    list-style-type: none;

    gap: 3rem;
}

#comoJogar ol li {
    display: flex;
    align-items: center;

    counter-increment: list-counter;
}

#comoJogar ol li::before {
    content: counter(list-counter) "";
    font-weight: bold;
    font-size: clamp(18pt, 3vw, 26.2pt); 
    font-family: Nunito;
    color: white;
    padding: clamp(5px, 1vw, 10px) clamp(15px, 2vw, 25px); 
    border-radius: 40px;
    background-color: #004AAD;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#comoJogar ol li p {
    font-family: Nunito;
    font-size: clamp(14pt, 3vw, 25pt); 
    font-weight: bold;
    color: black;
}
