body {
  background-image: url("https://images.unsplash.com/photo-1525333045628-55625a2c385f?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2378&q=80");
  background-position: 40% 0%;
  background-repeat: no-repeat;
}

.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-element {
  color: white;
  width: 100%;
  height: 400px;
  text-align: center;
  margin: auto;
  margin-top: 20vh;
}

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

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

img {
  height: 80%;
  width: 10%;
}

@media (max-width: 640px) {
  
  img {
    display: none;
  }
  
  body {
  	background-image: linear-gradient(60deg, red, #1f1f1f);
  }
  
  .nav-items li {
    float: none;
    display: block;
  }
  
  .navbar {
    height: 140px;
  }
  
}

