* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.navbar {
  background-color: rgb(82 82 82);
}
.navbar-ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 20px;
}
.navbar-ul a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
}
.navbar-ul li {
  list-style: none;
  transition: all 0.5s ease;
  border-bottom: 1px solid #ffF;
}
.navbar-ul li:hover {
  transform: translate(-5px, -10px);
}
.wrapper-img {
  background-image: url(../img/hero_image_01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 90.2vh;
  position: relative;
}
.wrapper-img div {
  position: absolute;
  top: 33%;
}
.wrapper-img h1 {
  color: #fff;
  margin-left: 100px;
  font-size: 80px;
  line-height: 96px;
  font-weight: 700;
  font-family: "Rubik", sans-serif;
}
.wrapper-img a {
  text-decoration: none;
  background-color: rgb(82 82 82);
  margin-left: 100px;
  line-height: 100px;
  padding: 15px 40px;
  border-radius: 30px;
  letter-spacing: 1px;
  font-size: 18px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease-in;
}
.wrapper-img a:hover {
    background: #fff;
    color: rgb(82 82 82);
}
