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

.textosGPS{
    font-family: 'Dosis', sans-serif;
    /*background-color: rgb(255, 250, 108);*/
    width: 80%;
    margin:auto;
    margin-top: 15px;
    margin-bottom: 10px;
}

.TituloGPS{
    /*background-color: aquamarine;*/
    width: 50%;
    margin: auto;
    text-align: center;
    font-weight: lighter;
    font-size: 40px;
    color:rgb(91,91,91);
    margin-top: 10px;
    margin-bottom: 15px;
}
h3{
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 25px;
}
.losBloques{
    /*background-color: blueviolet;*/
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    color:rgb(91,91,91);
    font-weight: lighter;
}

.bloque{
    background-color: rgb(255, 240, 240);
    text-align: center;
    width: 23%;
    padding-top: 10px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(91,91,91);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 300ms;
}

.bloque:hover{
    background-color: rgb(230, 12, 38);
    color:white;
    width: 25%;
    position: relative;
    top: -10px;
    box-shadow: none;
}
.ImgTxtGps{
    width: 150px;
    margin: auto;
}

@media only screen and (max-width : 600px) {
    .textosGPS{
        width:95%;
    }
    .TituloGPS{
        width: 95%;
    }
    .losBloques{
        flex-direction: column;
    }
    .bloque{
        width: 90%;
        margin: auto;
        margin-bottom: 10px;
    }
    .bloque:hover{
        width: 95%;
        top:-5px;
    }
    
}