body {
  background-image: url("https://storage.cloud.google.com/projects.codecraftworks.com/web/eLsx6oI8QHNcbOT97uk4/assets/workout.jpg");
  background-position: 40% 40%;
  background-repeat: no-repeat;
}

.container {
  height: 100vh;  
}

.navbar {
  border: 1px solid white;
  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;
  border: black;
}

#weightlift-btn {
  margin-top: 30px;
  height: 40px;
  width: 170px;
  border: 2px solid blue;
  background: lightblue;
  border-radius: 5px;
  color: black;
}

#benchpress-btn {
  margin-top: 30px;
  height: 40px;
  width: 170px;
  border: 2px solid blue;
  background: lightgreen;
  border-radius: 5px;
  color: black; 
}

#squat-btn {
  margin-top: 30px;
  height: 40px;
  width: 170px;
  border: 2px solid blue;
  background: pink;
  border-radius: 5px;
  color: black;
}

#help-btn {
  margin-top: 160px;
  height: 30px;
  width: 110px;
  border: 3px solid green;
  background: white;
  color: black;
}

#FAQs-btn {
  margin-top: 160px;
  height: 30px;
  width: 110px;
  border: 3px solid magenta;

@media (max-width: 640px) {
	svg {
    display: none;
  }
  
  .nav items li{
    float: none;
    display: block;
  }
  
  .navbar {
    height: 140px;
  }
  
   
}