@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
:root {
  --headerOpacity: 1;
  --headerScale: 1;
}

.video-header {
  position: absolute;
  text-align: center;
  width: 100vw;
  height: 100vh;
  background: #000;
}
.video-header, .video-header video, .video-header .viewport-header {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
.video-header video {
  object-fit: cover;
  opacity: .5;
}
.video-header .viewport-header {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  opacity: var(--headerOpacity);
  transform: scale(var(--headerScale));
}

html, body {
  height: 100vh;
  overflow: hidden;
  color: #fff;
}
html {
  font-family: Poppins;
  font-size: 150%;
  line-height: 1.4;
}

body {
  margin: 0;
}
h1 {
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5vw;
  line-height: 1.2;
  font-size: 3vw;
  text-align: center;
}
h1 span {
  display: block;
  font-size: 8vw;
  letter-spacing: -.3vw;
}
p {
	margin-top: 10vw;
}
a {
	color: #fff;
	text-decoration: none;
	font-size: 4vw;
	display: block;
	margin-top: 5vw;
}
.hashtags {
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-size: 30px;
	font-weight: 700;
	padding: 0 10vw;
	margin: 0 auto;
}
.hashtags div {
  overflow: hidden;
  position: relative;
  float: right;
  height: 65px;
  padding-top: 10px;
  margin-top: -10px;
}
.hashtags div ul {
	margin: 0;
	padding: 0;
	-webkit-animation: flip4 15s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
	animation: flip4 15s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
}
.hashtags div li {
	margin: 0;
	padding: 0;
  color: #fff;
  font-weight: 700;
  padding: 0 10px;
  height: 45px;
  margin-bottom: 45px;
  display: block;
  text-align: left;
}
@-webkit-keyframes flip4 {
  0% {
    margin-top: -360px;
  }
  5% {
    margin-top: -270px;
  }
  25% {
    margin-top: -270px;
  }
  30% {
    margin-top: -180px;
  }
  50% {
    margin-top: -180px;
  }
  55% {
    margin-top: -90px;
  }
  75% {
    margin-top: -90px;
  }
  80% {
    margin-top: 0px;
  }
  99.99% {
    margin-top: 0px;
  }
  100% {
    margin-top: -270px;
  }
}
@keyframes flip4 {
  0% {
    margin-top: -360px;
  }
  5% {
    margin-top: -270px;
  }
  25% {
    margin-top: -270px;
  }
  30% {
    margin-top: -180px;
  }
  50% {
    margin-top: -180px;
  }
  55% {
    margin-top: -90px;
  }
  75% {
    margin-top: -90px;
  }
  80% {
    margin-top: 0px;
  }
  99.99% {
    margin-top: 0px;
  }
  100% {
    margin-top: -270px;
  }
}

@media only screen and (min-width: 800px) {
	h1 {
	  letter-spacing: 1vw;
	  line-height: 1.2;
	  font-size: 2vw;
	}
	h1 span {
	  display: block;
	  font-size: 5.3vw;
	  letter-spacing: -.2vw;
	}
	a {
		font-size: 2.6vw;
		margin-top: 3.3vw;
	}
}