/* 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;
}

/* CARTA */
#carta h1  {
    
    text-align: center;
    background-color: lightseagreen;
    border-radius: 5px;
    width: 450px;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 30px;
    color: white;
    font-size: 22px;
    border-bottom: 4px solid cadetblue;
}
#carta p{
    margin: 1%;
    margin-left: center;
    text-align: center;
    color: white;
}

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