a {
  all: unset;
  cursor: pointer;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  margin-bottom: 0.3%;
}

.vc-container {
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  background: url('mountains.jpg') center;
  background-repeat: no-repeat;
  background-size: cover;
}
.vc-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
  z-index: 1;
}
.vc-content {
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 2;
}
.vc-heading {
  text-align: center;
  font-family: 'Bowlby One SC', cursive;
  font-size: 12.1em;
  margin: 0;
  color: #e6f1ff;
  text-shadow: 0 0 40px;
  font-weight: 100;
  animation: blink 6s ease-in-out;
}
.vc-heading span {
  display: inline-flex;
  width: 20px;
  animation: none;
  color: #9f9f9fb3;
  text-shadow: none;
  vertical-align: 10%;
  font-size: 25%;
}
.vc-sub-heading {
  font-family: 'Amatic SC', cursive;
  font-size: 4em;
  margin: 0;
  color: #66cbf3;
  text-shadow: 0 0 60px;
  font-weight: 100;
  animation: blink-sub 6s ease-in-out;
}
.blink-infinite {
  animation: infinite-blink 0.7s 3s infinite;
}
@media screen and (max-width: 500px) {
  .vc-heading {
    font-size: 8em;
  }
  .vc-sub-heading {
    font-size: 1.3em;
  }
}
@keyframes blink {
  35%,
  37%,
  39%,
  41%,
  100% {
    color: #e6f1ff;
    text-shadow: 0 0 40px;
  }
  0%,
  34%,
  36%,
  36%,
  38%,
  40% {
    color: #9f9f9fb3;
    text-shadow: none;
  }
}
@keyframes blink-sub {
  35%,
  37%,
  39%,
  41%,
  100% {
    color: #66cbf3;
    text-shadow: 0 0 60px;
  }
  0%,
  34%,
  36%,
  36%,
  38%,
  40% {
    color: #9f9f9fb3;
    text-shadow: none;
  }
}
@keyframes infinite-blink {
  60%,
  80% {
    color: #9f9f9fb3;
    text-shadow: none;
  }
  70%,
  100% {
    color: #66cbf3;
    text-shadow: 0 0 30px;
  }
}
