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

.cabecera{
    background-image: url(../img/Camara.jpg);
    /*background-color: aquamarine;*/
    border-radius: 20px;
    width: 90%;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-family: 'Dosis', sans-serif;
    background-attachment: fixed;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

.Logo{
    margin-top: 10px;
    width: 450px;
}

.txtInicio{
    background-color: rgb(230, 12, 38);
    color:white;
    display: flex;
    flex-direction: column;
    width: 35%;
    margin: 40px 20px 40px 20px;
    padding: 5px 10px 20px 10px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width : 600px) {
    .cabecera{
        flex-direction: column;        
    }

    .txtInicio{
        width: 90%;
        margin-bottom: 20px;
    }

    .Logo{
        margin-top: 5px;
        width: 300px;
    }
}