@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}

body {
  overflow: hidden;
}
header {
  display: relative;
  overflow: hidden;
}
#myVideo {
  display: absolute;
  width: 100%;
  z-index: -1;
}

h2 {
  position: absolute;
  font-size: 6vw;
  color: wheat;
  font-weight: 400;
  text-align: center;
  line-height: 1.5em;
  z-index: 15;
  transform: skewY(-7deg);
  text-shadow: 1px 1px 0 #5a5a5a, 2px 2px 0 #5a5a5a, 3px 3px 0 #5a5a5a,
    4px 4px 0 #5a5a5a, 5px 5px 0 #5a5a5a, 10px 10px 0px rgba(0, 0, 0, 0.2);
  animation: floating 5s ease-in-out infinite;
  top: 10%;
  left: 10%;
}

h2 span {
  font-weight: 500;
  font-size: 2em;
  text-shadow: 1px 1px 0 #5a5a5a, 2px 2px 0 #5a5a5a, 3px 3px 0 #5a5a5a,
    4px 4px 0 #5a5a5a, 5px 5px 0 #5a5a5a, 6px 6px 0 #ccc, 7px 7px 0 #5a5a5a,
    8px 8px 0 #ccc, 9px 9px 0 #5a5a5a, 10px 10px 0 #5a5a5a,
    20px 20px 0px rgba(0, 0, 0, 0.2);
}
.enter {
  position: absolute;
  top: 75%;
  left: 70%;
  font-size: 1.5rem;
}
.enter2 {
  position: absolute;
  top: 82%;
  left: 60%;
  font-size: 1.5rem;
  color: rgb(242, 242, 125);
}
blockquote {
  position: absolute;
  top: 80%;
  left: 60%;
  color: black;
  font-size: 1.2rem;
  font-weight: 700;
}
@keyframes floating {
  0%,
  100% {
    transform: skewY(-7deg) translateY(-20px);
  }

  50% {
    transform: skewY(-7deg) translateY(20px);
  }
}

section i {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #fff, 0 0 80px #fff;
  animation: stars linear infinite;
}

@keyframes stars {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 800px) {
  body {
    background-color: bisque;
    height: auto;
  }
  #myVideo {
    display: absolute;
    width: 100%;
    height: 40vh;
    z-index: -1;
  }
  .enter {
    position: absolute;
    top: 75%;
    left: 10%;
    font-size: 1.3rem;
  }
  .enter2 {
    position: absolute;
    top: 99%;
    left: 5%;
    font-size: 1rem;
  }
  blockquote {
    position: absolute;
    top: 40%;
    left: 0%;
    color: black;
    font-size: 1rem;
    font-weight: 600;
    padding: 15px;
  }
}
