body {
  background-image: url(https://assets3.thrillist.com/v1/image/2826781/1584x1056/crop;jpeg_quality=60;progressive.jpg);
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  height: 100vh;
}

.navbar {    
  height: 85px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav-items {
  color: white;
  padding: 0;
  list-style: none;
}

.nav-items li {
  float: left;
  padding: 10px;
}

.center-elements {
  color: white;
  width: 100%;
  height: 400px;
  text-align: center;
  margin: auto;
  margin-top: 20vh;
}

#menu-btn {
  margin-top: 30px;
  height: 40px;
  width: 120px;
  border: 2px solid gray;
  background: none;
  border-radius: 5px;
  color: white;
}

#maker-btn {
  margin-top: 30px;
  height: 40px;
  width: 170px;
  background: red;
  border-radius: 5px;
  color: white;
  border: none;
}

@media (max-width: 640px) {
  svg {
    display: none;
  }

  .nav-items li{
    float: none;
    display: block;
  }

  .navbar {
    height: 140px;
  }

}

