/*-------------------------------------------Background Image---------------------------------------------*/
#bg {
  width: 100%;
  height: auto;
}

/*-------------------------------------------Redirect Button---------------------------------------------*/
.redirect-btn {
  top: 85%;
}

.redirect-btn img {
  width: 60%;
  animation: pulse 0.9s infinite linear;
}

.redirect-btn1 {
  top: 24.8%;
  left: 30%;
}

.redirect-btn1 img {
  width: 5%;
}

.element {
  top: 35%;
}

.element img {
  width: 45%;
}

.text {
  top: 27%;
  z-index: 4;
  color: white;
  position: absolute;
  font-size: 4vh;
  font-weight: bold;
}

/*-------------------------------------------Keyframe Animation---------------------------------------------*/
@keyframes pulse {
  0% {
    transform: scale(0.9);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(0.9);
  }
}

/*-------------------------------------------Multi Device Screen Size---------------------------------------------*/
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  #bg {
    height: 100vh;
  }
}

@media (max-width: 992px) {
  .text {
    font-size: 7vw;
  }
}
