.header{
    align-items: center;
}

nav, ul{
    list-style: none;
    display: flex;
    justify-content: center;
    font-size: 30px;
}

nav ul li {
    margin: 0 15px;
}

nav, a {
    color: black;
}
.footer{
    grid-area: footer;
    background-color: lightgrey;
    padding: 20px;
}
.footer-content {
    display: grid;
    grid-template-areas: 
        "hours social"
        "copyright copyright";
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
/* header footer*/
main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
main h1 {
    text-decoration: underline;
}
.main, mission, p {
    display: grid;
    font-size: 1em;
}
.team {
    background-image: url("../assets/hero-restaurant.jpg");
    color: white;

}
.team h1, .mission h1, .history h1 {
    font-family: cursive;
}
/*social*/
.social-media{
    grid-area: social;
    display: grid;
    grid-auto-rows: auto;
}
.social-name{
    text-decoration: underline;
}
.copyright{
    grid-area: copyright;
    text-align: center;
    font-size: 25px;
}
footer a {
    color: blue;
}