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

.bloqueSoftware{
    background: linear-gradient(to right, rgb(83, 83, 83), rgb(164, 54, 54));
    text-align: center;
    width: 95%;
    margin: auto;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 10px 20px 20px 20px;
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(59,59,59);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

.tituloSoftware{
    /*background-color: rgb(84, 158, 158);*/
    color:white;
    font-size: 35px;
    width: 30%;
    margin: auto;
    text-align: center;
    
    margin-bottom: 10px;
}

.hijoSoftware{
    /*background-color: aqua;*/
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.txtSoftware1{
    width: 20%;
    background-color: rgb(230, 12, 38);
    color:white;
    font-size: 20px;
    padding: 10px 20px 10px 20px;
    margin-bottom: 5px;
}

.txtSoftware2{
    width: 20%;
    background-color: rgb(230, 12, 38);
    color:white;
    font-size: 15px;
    padding: 10px 20px 10px 20px;
    margin-bottom: 5px;
}

.botonSoftware{
    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;
}

.imgSoftware{
    width: 350px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 300ms;
}
.imgSoftware:hover{
    transform: scale(1.2);
    box-shadow: none;
}

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

@media only screen and (max-width : 600px) {
    .tituloSoftware{
        width: 95%; 
        font-size: 30px;       
    }
    .hijoSoftware{
        flex-direction: column;
        width: 100%;
    }
    .txtSoftware1{
        width: 100%;
    }
    .txtSoftware2{
        width: 100%;
        margin-bottom: 20px;
    }
    .imgSoftware{
        width: 100%;
    }
}