* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.start {
  clear: both;
  overflow: hidden;
}
header {
  overflow: hidden;
  height: 100vh;
}

.video-background {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
}
@media (min-aspect-ratio: 16/9) {
  .video-background {
    width: 100%;
    height: auto;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-background {
    width: auto;
    height: 100;
  }
}
.welcome-msg {
  position: absolute;
  top: 56%;
  text-align: center;
  left: 32%;
}
.welcome-msg h2 {
  color: rgb(6, 5, 15);
  font-size: 50px;
  margin: auto;
}
.welcome-msg p {
  color: rgb(249, 249, 250);
  font-size: 20px;
  margin: 15px;
  font-weight: bold;
}
.welcome-msg a {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 60px;
  margin-top: 10%;
  line-height: 60px;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: sans-serif;
  box-sizing: border-box;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  border-radius: 30px;
}
.welcome-msg a:hover {
  animation: animate 8s linear infinite;
}
@keyframes animate {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}
.welcome-msg a:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  background: linear-gradient(90deg, #03a9f4, #f441a5, #ffeb3b, #03a9f4);
  background-size: 400%;
  border-radius: 40px;
  opacity: 0;
  transition: 0.5s;
}
.welcome-msg a:hover:before {
  filter: blur(20px);
  opacity: 1;
  animation: animate 8s linear infinite;
}
#logo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fill 5s ease forwards 5.5s;
}
#logo path:nth-child(1) {
  stroke-dasharray: 592;
  stroke-dashoffset: 572;
  animation: line-anim 4s ease forwards;
}
#logo path:nth-child(2) {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: line-anim 4s ease forwards 0.4s;
}
#logo path:nth-child(3) {
  stroke-dasharray: 495;
  stroke-dashoffset: 495;
  animation: line-anim 4s ease forwards 0.6s;
}
#logo path:nth-child(4) {
  stroke-dasharray: 527;
  stroke-dashoffset: 527;
  animation: line-anim 4s ease forwards 0.9s;
}
#logo path:nth-child(5) {
  stroke-dasharray: 635;
  stroke-dashoffset: 635;
  animation: line-anim 4s ease forwards 1.2s;
}
#logo path:nth-child(6) {
  stroke-dasharray: 604;
  stroke-dashoffset: 604;
  animation: line-anim 4s ease forwards 1.5s;
}
#logo path:nth-child(7) {
  stroke-dasharray: 463;
  stroke-dashoffset: 463;
  animation: line-anim 4s ease forwards 1.8s;
}
#logo path:nth-child(8) {
  stroke-dasharray: 550;
  stroke-dashoffset: 550;
  animation: line-anim 4s ease forwards 2.1s;
}
#logo path:nth-child(9) {
  stroke-dasharray: 450;
  stroke-dashoffset: 450;
  animation: line-anim 4s ease forwards 2.1s;
}
@keyframes line-anim {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fill {
  from {
    fill: transparent;
  }
  to {
    column-fill: #fff;
  }
}
