*{
    box-sizing:border-box;
    margin: 0;
}
body{
    font-family: 'Limelight';
    position: relative;
    width: 110%;
    height: auto;
    background: #F5F5F5;
}
.nav-container{
    background: #F3F3F3;
    height: 119px;
}
.wrapper{
    max-width: 1000px;
    margin: 0 auto;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height:72px
}
nav ul{
    display: flex;
}
nav .logo{
    width: 408px;
    height: 91px;
}
.nav-items li{
    list-style: none;
    margin-right: 50px;
}
.nav-items li:nth-last-of-type(1){
    margin: 0;
}
.nav-items li a{
    height: 38px;
    text-decoration: none;
    color: black;
}
/*Body*/

header{
    align-items: center;
    justify-content: space-between;
}  

.body-container .wrapper{
    width: 1000px;
    margin: 0 auto;
}

header h1{
    font-weight: 400;
    font-size: 64px;
    line-height: 78px;
    margin-bottom: 30px;
}

header h3{
    font-family: 'Limelight';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 39px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto; /* center the container */
}
.menu-items {
    flex: 0 0 18%;
    max-width: 18%;
    margin: 50px;
    padding: 5px;
  }

  footer {
    background-color: #333;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px

}