/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body {
    background-image: url(../img1/marmol.jpg);
    max-width: 750px;
    margin: auto;
    font-family: sans-serif;
    padding: 1em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

footer {
    background-color: #999999;
    padding: 20px;
    border: 3px solid #ccc;
    border-radius: 1em;
}

header {
    background-color: #999999;
    padding: 50px;
    border-radius: 5px;
    width:auto;
    height: 50px;
}

.nombre {
    font-size: 4em;
    text-align: left;
    position: absolute;
    color:black;
    margin: -10px 15px 20px 0;
    font-family: 'Bebas Neue', cursive;
}

.imagen {
    border: 5px solid black;
    border-radius: 10px;
    float: right;
    margin: -30px;
    
}

li {
    padding: .3em;
    color: black;
    
}

a{
    color: #252629;
}

footer {
    text-align: center;
}

.horario {
    padding: 10px;
    font-size: .8em;
}

@media only screen and (max-width: 625px) {
    .nombre{
        font-size: 2rem;
        margin-left: -10px;
    }

    .imagen{
        width: 90px;        
    }
}

@media only screen and (max-width: 370px) {
    
    .nombre{
        font-size: 2.5rem;
        margin-left: -10px;
    }

    .imagen{
        display: none;
    }
}



