.banner {
  width: 100%;
  height: 100vh;
  background-image: url("../Assets/banner.jpg");
  background-size: cover;
  background-position: center;
  margin-bottom: 15%;
}

.navbar {
  width: 85%;
  margin: auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.767);
}

.logo {
  width: 200px;
  cursor: pointer;
}

.banner .navbar .social i{
  color: yellow;
  font-size: 30px;
}

.navbar ul li {
  list-style: none;
  display: inline-block;
  margin: 0 20px;
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
}

.navbar ul li::after {
  content: '';
  height: 3px;
  width: 0;
  background: #def03a;
  position: absolute;
  left: 0;
  bottom: -10px;
  transition: 0.5s;
}

.navbar ul li:hover::after {
  width: 100%;
}

.banner #signUp {
  position: absolute;
  top: 60%;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 70px;
  font-size: xx-large;
  font-weight: 900;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #FFDC00;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.banner #signUp:hover {
  background-color: #f1d101da;
  color: #ffffff;
}

.banner #signUp:active {
  background-color: #ffffff;
  color: #FFDC00;
}