body {
  background-image: url(https://images.unsplash.com/photo-1499028344343-cd173ffc68a9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80);
  background-position: 40% 80%;
  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;
  text-shadow: 0px 0px 5px black;
	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;
  text-shadow: 2px 2px black;
}

#maker-btn {
  margin-top: 30px;
  height: 40px;
  width: 170px;
  border: 2px solid gray;
  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;
  }
  

}  