body{
  background-image: url("https://images.unsplash.com/photo-1525333045628-55625a2c385f?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1489&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-item{
  color:white;
  padding:0px;
  list-style:none;
}
.nav-item li{
  float: left;
  padding: 10px;
}
.center-element{
  color: white;
 	width: 100%;
  height:35%;
  text-align:center;
  margin:auto;
  margin-top: 20%;
}
#menu-btn{
  height:40px;
  background: transparent;
  color: white;
  border-radius: 5px;
  width:120px;
  border: 2px solid grey;
  margin-top: 10px;
}
#maker-btn{
  height:40px;
  margin-top: 10px;
  color: white;
  border-radius: 5px;
  width:170px;
  background: rgb(249, 66, 32);
  border:none;
}

@media (max-width: 542px){
  svg{
    display:none;
  }
  .nav-item li{
  	display:block;
    float: none
	}
  .navbar{
  	height: 140px;
  	display:flex;
  	justify-content:space-around;
  	align-items:center;
	}
  body{
  	background-image: linear-gradient(130deg, #6f6f6f, #1f1f1f, #1f1f1f);
  }
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 100px;
}
::-webkit-scrollbar-thumb {
  background: #666666; 
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #999999; 
}
