@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

#denuncias {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.denunciasTitle h1 {
    font-family: Poppins, sans-serif;
    font-weight: 500;
    text-align: center;
}

#denuncias .denunciasImage {
    height: 180px;
    width: 400px;
    margin-bottom: 30px;
}

#denuncias .denunciasImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

#denuncias .denunciasText {
    width: 80%;
    margin: 0 auto 30px;
    color: #5b5a5a;
}

#denuncias .denunciasText span {
    font-weight: 700;
    margin-top: 20px;
}

#denuncias .denunciasText a {
    color: var(--pink-color);
    font-size: 1rem;
}

#denuncias .denunciasText a:hover {
    border: none;
    text-decoration: underline;
    color: #ec6aa7;
}

@media (min-width: 800px) {
    #denuncias {
        flex-direction: row;
    }

    #denuncias > div {
        margin: 0 20px;
    }

    #denuncias .denunciasImage {
        height: 800px;
    }

    #denuncias .denunciasText {
        font-size: 1rem;
    }
}

@media (min-width: 1000px) {
    #denuncias {
        width: 80%;
        margin: 4rem auto 8rem;
        align-items: initial;
    }

    #denuncias .denunciasImage {
        height: 800px;
        width: 550px;
    }

    #denuncias .denunciasText,
    #denuncias .denunciasText a {
        font-size: 1.3rem;
    }

    .denunciasTitle {
        width: 80%;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .denunciasTitle h1 {
        text-align: initial;
    }
}
