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

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


.tituloCamara{
    /*background-color: blueviolet;*/
    width: 50%;
    margin: auto;
    color:rgb(255, 255, 255);
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
}

.espCamara{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.txtCamara1{
    /*background-color: bisque;*/
    width: 100%;
    font-size: 20px;
    padding: 10px 20px 10px 20px;
}
.imgCamara{
    width: 20%;
    margin-bottom: 20px;
    border-radius: 20px;
    border:2px solid rgb(230, 12, 38);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

.txtBloque1{
    background: linear-gradient(to right, rgb(95, 158, 160),rgb(121, 121, 121), rgb(95, 158, 160));
    /*background-color: rgb(111, 141, 142);*/
    color:white;
    width: 30%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}
.txtBloque2{
    background-color: cadetblue;
    color:white;
    width: 25%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}
.txtCamara2{
    /*background-color: blue;*/
    width: 100%;
    font-size: 15px;
    padding: 10px 20px 10px 20px;
    margin-bottom: 20px;
}

.botonContactenos{
    width: 300px;
    height: 40px;
    margin: auto;
    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;
    margin-bottom: 20px;
    cursor: pointer;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 300ms;
}

.botonContactenos:hover{
    background-color: rgb(68, 68, 68);
    color:white;
}
.linkBoton{
    /*background-color: aquamarine;*/
    display: flex;
}

@media only screen and (max-width : 600px) {
    .bloqueCamara{
        padding: 10px 10px 10px 10px;
    }
    .tituloCamara{
        width: 95%;
    }
    .espCamara{
        flex-direction: column;
    }
    .txtBloque1{
        width: 95%;
    }
    .txtBloque2{
        width: 95%;
    }
    .imgCamara{
        width: 100%;
    }

}    