.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*/
.starters h1, .main-course h1, .desserts h1, .drinks h1 {
    font-family: cursive;
}

dl {
    margin: 20px;
}

dt {
    font-weight: bolder;
    color:green;
}
dt span {
    color: red;
}
dd {
    font-style: oblique;
}
/*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;
}