.reglas{
    width: 100%;
    display: contents;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    
}

.reglas h2{
    text-align: left;
    font-size: 44px;
    font-weight: 500;
    width: 90%;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    
}

.reglas-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    gap: 30px;
    margin: auto;
    margin-bottom: 3rem;
    background-color: rgb(255, 255, 255);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 0 30px 0 rgb(66 1 131 / 14%);
}

.reglas-container div{
    max-width: 600px ;
    width: 50%;
}
.reglas-texto{
    width: 90%;
}

.reglas-texto p{
    font-size: 20px;
    font-weight: 400;
    
}
.reglas-descarga{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}
.reglas-descarga img{
    width: 100px;
}


@media (max-width:768px) {
    .reglas-container{
        flex-direction: column;
        margin-top: 2rem;
        width: 80%;
    }
    .reglas-container div{
        width: 90%;
    }
}


