body{
    background-color: #181818;
}

p{
    font-family: 'Roboto', sans-serif;
    color: #F5F5F5;
}

h1{
    text-align: center;
    font-size: 4em;
    color: rgb(235, 18, 18);
    font-weight: 800;
}

ul {
    list-style: none;
    list-style-position: inside;
    margin: 0;
    padding: 0;
}


nav{
    display: flex;
}

nav a{
    color: #009b00;
    margin: 5px;
    padding: 15px 32px;
    text-align: center;
    display: inline-block;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    text-decoration:none;
}

nav a:hover{
    color: #00c200;
}

#titulo h1{
    text-align: center;
    font-size: 5em;
    margin-bottom: 5%;
    color: rgb(235, 18, 18);
    font-weight: 800;
}

#titulo p{
    text-align: center;
    margin-bottom: 5%;
    font-style: italic;
    font-size: 2em;
}

#menu-resumen, #contacto{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 10%;
    margin-top: 0;
    margin-bottom: 0;
    padding: 2%;
    text-align: center;
    list-style-type: none;
}

#menu-resumen h2, #contacto h2{
    color:#009b00;
}

#menu-resumen p, #contacto p{
    font-style: italic;
    color:beige;
}

#contacto li{
    color:beige;
    font-size: 3em;
}

#menu{
    background-color: beige;
    margin: 10%;
    margin-top: 2%;
    padding: 2%;
    padding-bottom: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#menu h3{
    font-size: 2em;
    color: rgb(235, 18, 18);
    margin-bottom: 3%;
}

#menu li{
    font-size: 1.2em;
}

.boton{
    background-color: #009b00;
    border-radius: 25px;
    color: white;
    padding: 15px 32px;
    text-align: center;
    max-width: 150px;
    font-size: 2em;
    text-decoration: none;
    display: block;
    margin: 0 auto;
    margin-bottom: 1%;
    transition-duration: 0.1s;
}

.boton:hover{
    background-color:#00c200;
    cursor: pointer;
}

#resumen{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#horarios{
    font-size: 2em;
    background-color: #202020;
    padding: 1%;
}

#horarios strong{
    color: rgb(235, 18, 18);
}

.galeria{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin: 2em auto;
    row-gap: 20px;
    column-gap: 2px;
    justify-items: center;
    justify-content: center;
}

.galeria img{
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 25px;
    transition: transform .2s;
}

.galeria img:hover{
    transform: scale(1.1);
}

footer{
    font-size: 0.9em;
    text-align: center;
    margin-top: 5em;
}

footer p{
    color: rgb(130, 130, 130);
}