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

body{
    /*background-color: black;*/
    background-image: url("../img/back1.jpeg");
    font-family: Dosis;
}
a{
    text-decoration: none;
    color:#ffffff;
}

.cabecera{
    background-color: #b80909;
    width: 50%;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.Luna{
    height: 150px;
}
.Logo{
    height: 200px;
}
.boton{
    background-color: #b80909;
    width: 250px;
    height: 70px;
    text-align: center;
    margin: auto;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    color:#ffffff;
    font-family: 'Dosis';
    font-size: 45px;
    font-weight: bold;
}

.PiePagina{
    color:#ffffff;
    font-family: 'Dosis';
    font-size: 20px;
    font-weight: bold;
    background-color: #b80909;
    height: 150px;
    width: 50%;
    margin: auto;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:space-around;
}

@media only screen and (max-width : 900px) {
    .cabecera{  
         width: 95%;
    }
    .Luna{
        height: 100px;
    }
    .Logo{
        height: 150px;
    }
    .PiePagina{
        flex-direction: column;
        height: 70%;
        font-size: 15px;
    }
    .social{
        display: flex;
        flex-direction: row;
        margin-top: 5px;
        margin-bottom: 5px;
        align-items: center;
        justify-content: space-between;
    }
}