* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.banner {
  width: 100%;
  height: 100vh;
  background-image: url(img/InteriorBackgrounds-1920x1200.jpg);
  background-size: cover;
  background-position: center;
}
.navbar {
  width: 85%;
  margin: auto;
  padding: 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 120px;
  cursor: pointer;
  color: azure;
}
.navbar ul li {
  list-style: none;
  display: inline-block;
  margin: 0 20px;
  position: relative;
}
.navbar ul li a {
  text-decoration: none;
  color: black;
  text-transform: uppercase;
}
.navbar ul li::after {
  content: "";
  height: 3px;
  width: 0;
  background: #86a7a7;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.content {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #080808;
}
.content h1 {
  font-size: 70px;
  margin-top: 80px;
}
.content p {
  margin: 20px auto;
  font-weight: 100;
  line-height: 25px;
}
button {
  width: 200px;
  padding: 15px 0;
  text-align: center;
  margin: 20px 10px;
  border-radius: 25px;
  font-weight: bold;
  border: 2px solid #a8a009;
  background: transparent;
  color: #f1f7ee;
  cursor: pointer;
  font-size: 16px;
  border-color: #dacf06;
  position: relative;
  overflow: hidden;
}
span {
  background: #a8a009;
  height: 100%;
  width: 0;
  border-radius: 25px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: 0.5s;
}
button:hover span {
  width: 100%;
}
button:hover {
  border: none;
}
/* ---------------css for small screen--------------- */

@media only screen and (max-width: 480px) {
  .navbar {
    width: 100%;
    padding: 20px 0;
  }

  .logo {
    width: 100px;
  }

  .navbar ul li {
    margin: 0 5px;
  }

  .content h1 {
    font-size: 30px;
    margin-top: 20px;
  }

  .content p {
    font-size: 14px;
    line-height: 20px;
  }

  button {
    width: 120px;
    padding: 10px 0;
    font-size: 12px;
  }
}

/* ---------------css for tab screen--------------- */

@media only screen and (max-width: 1024px) {
  .navbar {
    width: 100%;
    padding: 20px 0;
  }

  .logo {
    width: 100px;
  }

  .navbar ul li {
    margin: 0 10px;
  }

  .content h1 {
    font-size: 30px;
    margin-top: 40px;
  }

  .content p {
    font-size: 14px;
    line-height: 20px;
  }

  button {
    width: 120px;
    padding: 10px 0;
    font-size: 12px;
  }
}
