@import 'https://fonts.googleapis.com/css?family=Rubik+One';
@import 'https://fonts.googleapis.com/css?family=Dosis';


.descargas{
    background-color: rgb(164, 54, 54);
    width: 95%;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 20px;
    border: 1px solid rgb(59,59,59);
    padding: 10px 20px 10px 20px;
}

.tituloDescargas{
    font-size: 30px;
    width: 50%;
    margin: auto;
    text-align: center;
    color:white;
    margin-top: 10px;
    margin-bottom: 20px;
}

.hijoDescarga{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.descarga1{
    text-align: center;
    font-size: 20px;
    color:white;
}
.descarga2{
    text-align: center;
    font-size: 20px;
    color:white;
}

.botonDescarga{
    width: 300px;
    height: 40px;
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(59, 59, 59);
    color:rgb(255, 255, 255);
    font-size: 20px;
    background-color: rgb(230, 12, 38);
    margin-top: 10px;
    cursor: pointer;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 300ms;
    margin-bottom: 20px;
}

.botonDescarga:hover{
    background-color: rgb(68, 68, 68);
    color:white;
}

@media only screen and (max-width : 600px) {
    .hijoDescarga{
        flex-direction: column;       
    }
    .tituloDescargas{
        width: 90%;
        font-size: 35px;
    }
}   