.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: white;
}

.container {
    display: grid;
    grid-template-areas:
        "hero"
        "footer" ;
    grid-template-rows: 1fr auto;
    min-height: 100vh;
}
.main{
    display: grid;
    place-items: center;
    color: white;
    text-align: center;
}
.hero {
    grid-area: hero;
    background-image: url("../assets/hero-restaurant.jpg");
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-rows: auto 1fr;
}

.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;
}
.hours{
    grid-area: hours;
}
.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;
}