* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: normal;
}

a {
  color: currentcolor;
}

a:link,
a:visited,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(0);
  }
  27% {
    transform: translateY(-10px);
  }
  29% {
    transform: translateY(0);
  }
  31% {
    transform: translateY(-5px);
  }
  33% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

@-webkit-keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(0);
  }
  27% {
    transform: translateY(-10px);
  }
  29% {
    transform: translateY(0);
  }
  31% {
    transform: translateY(-5px);
  }
  33% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

body, html {
  height: 100%;
}

body {
  background-color: black;
  font-family: "KlavikaWebBasicRegular";
  text-align: center;
}

.main {
  color: white;
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: black;
  z-index: -1;
}

video {
  position: absolute;
  bottom: 0;
  display: block;
  left: 50%;
  transform: translateX(-50%);
}

.overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

h1 {
  font-size: 60px;
  margin-bottom: 30px;
  max-width: 80%;
  text-shadow: 0 0 10px black;
}

.btn {
  background-color: #c21913;
  font-size: 25px;
  padding: 0 65px;
  margin-bottom: 10px;
  transition: .15s;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex: 0 0 50px;
  max-width: 80%;
}

.btn:hover {
  background-color: red;
}

.appstore-link {
  font-size: 14px;
  text-shadow: 0 0 5px black;
}

.appstore-link .bold {
  font-family: "KlavikaWebBasicMedium";
}

.scroll {
  margin-top: auto;
  width: 50px;
  height: 20px;
  display: block;
  position: absolute;
  bottom: 0;
  padding-bottom: 50px;
  left: 50%;
  margin-left: -25px;
  cursor: pointer;
  box-sizing: content-box;
  outline: 0;
  transition: .25s;
  -webkit-animation: bounce 8s ease-in infinite none;
  animation: bounce 8s ease-in infinite none;
}

.scroll:hover {
  animation: none;
  margin-bottom: 5px;
}

.scroll .scroll-icon {
  width: 100%;
  height: 100%;
}

footer {
  background-color: #f6f6f6;
  color: black;
  font-size: 14px;
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  scroll-behavior: smooth;
  transition: 2s;
}

footer section {
  flex: 0 0 20%;
}

footer section .list-title {
  font-size: inherit;
  text-transform: uppercase;
  font-family: "KlavikaWebBasicMedium";
  margin-bottom: 16px;
  margin-top: 30px;
}

footer section .list-item {
  display: block;
  line-height: 25px;
}

footer section .list-item:hover {
  color: #c21913;
}

@media only screen and (max-width: 767px) {
  footer {
    flex-direction: column;
  }
  footer section {
    flex: auto;
  }
}

@media (min-aspect-ratio: 16/9) {
  video {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio: 16/9) {
  video {
    width: auto;
    height: 100%;
  }
}

.main-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  margin-bottom: -12vh;
  flex: auto;
  justify-content: center;
}

.bottom-section {
  height: 70px;
  width: 100%;
  width: 100%;
  position: relative;
}

.motivation-section {
  display: flex;
  margin-top: 8vh;
  width: 90%;
  justify-content: center;
  align-items: flex-start;
}

.motivation-section-part:not(:first-of-type) {
  margin-left: 130px;
}

.msp-title {
  font-size: 26px;
  margin-bottom: 20px;
  text-shadow: 0 0 10px black;
}

.msp-benefit-container {
  display: flex;
  align-items: flex-start;
}

.msp-benefit-container:not(:last-of-type) {
  margin-bottom: 10px;
}

.mspb-icon {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  color: red;
}

.skull-icon {
  width: 100%;
  height: 100%;
}

.mspb-text {
  font-size: 18px;
  margin-top: -2px;
  position: relative;
  text-align: left;
  text-shadow: 0 0 10px black;
}

.mspb-text a {
  text-decoration: underline;
}

.msp-streamers-container {
  display: flex;
}

.streamer-box {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.streamer-box:not(:last-of-type) {
  margin-right: 20px;
}

.msp-streamer-image {
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  width: 80px;
  height: 80px;
}

.msp-streamer-image img {
  width: 100%;
  height: 100%;
}

.msp-streamer-image:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: .15s;
}

.msp-streamer-name {
  font-size: 16px;
  margin-top: 10px;
  text-shadow: 0 0 10px black;
  transition: .25s;
}

.streamer-box:hover .msp-streamer-image:before {
  border: 2px solid rgba(255, 255, 255, 0.8);
}
