/* HOJA DE ESTILOS */
*{
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
    font-family: 'Josefin Sans', sans-serif;
}
#fondohome{
    background-color: steelblue;
    background-repeat: no-repeat;
    background-size: cover;
}

/* HEADER */
header{
    display: flex;
    background-color: rgba(0,0,0,.5);
    max-width: 100vw;
    justify-content: space-around;
    height: 70px;
}
header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-wrap: wrap;
}
header nav ul li {
    flex-grow: 5; 
    font-size: 1em;
}
header nav ul li a {
    text-decoration: none;
    color: white;
    height: 2em;
    padding: .8em;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.menu__item{
    display: flex;
    align-items: center;
    color: white;
    justify-content:space-around;
    text-decoration: none;
    list-style: none;
}
.menu__inicio{
    display: flex;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    padding: 1em 2em;
    margin: .0em;
    align-items: center;
}
.menu__inicio:hover{
    display: flex;
    color: lightseagreen;
    font-weight: bold;
    text-transform: uppercase;
}
.menu__carta{
    display: flex;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    padding: 1em 2em;
    margin: .0em;
    align-items: center;
}
.menu__carta:hover{
    display: flex;
    color: lightseagreen;
    font-weight: bold;
    text-transform: uppercase;
}
.menu__mapa{
    display: flex;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    padding: 1em 2em;
    margin: .0em;
    align-items: center;
}
.menu__mapa:hover{
    display: flex;
    color: lightseagreen;
    font-weight: bold;
    text-transform: uppercase;
}

/* BANNER */
#banner h1{
    margin: 18%;
    margin-top: -8.5%;
    color: lightseagreen;
    font-size: 110px;
}
#banner p{
    margin: 18.5%;
    margin-top: -19.8%;
    color: lightblue;
    font-size: 30px;
}

/* NOMBRES */
.nombres{
  padding: 20px 20px;
  position: center;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  
}

.nombres a{
    margin: 50px;
    margin-top: -12%;
    margin-bottom: 5%;
    padding: 5px 20px;
    color: white;
    background-color: lightseagreen;
    height: 70px;
    border: none;
    border-radius: 10px;
    text-align: center;
    border-bottom: 5px solid grey;
    border-right: 3px solid grey;
    font-size: 20px;
    text-decoration: none;
}

/* FOOTER */
footer{
    background: lightseagreen;
    color: white;
    font-style: thin;
    font-size: 11px;
    text-align: center;
    display: flex;
    align-items: center;
    margin-top: 10em;
    width: 100%;
    height: 9em;   
}