.donaciones{
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.donaciones h4{
    text-align: center;
    font-family: Bebas Neue;
    font-size: 100px;
}

.donaciones p{
    font-family: Quicksand;
    font-size: 30px;
    width: 80%;
    margin: auto auto 30px auto;
}

.donaciones p:nth-last-child(2){
    margin-top: 25px;
}

.donaciones img{
    margin: auto;
}

.donaciones button{
    width: 300px;
    height: 80px;
    margin: 20px auto;
    background: var(--naranja--);
    border: none;
    border-radius: 25px;
}

.donaciones button a{
    display: block;
    width: 100%;
    font-family: Quicksand;
    font-weight: bolder;
    color: var(--blanco--);
    text-decoration: none;
    font-size: 30px;
}

@media (max-width:866px) {
    .donaciones h4{
        font-size: 30px;
    }

    .donaciones p{
        font-size: 15px;
    }

    .donaciones img{
        width: 150px;
    }

    .donaciones button{
        width: 150px;
        height: 40px;
    }
    
    .donaciones button a{
        font-size: 15px;
    }

}