@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Orbitron:wght@400;500;600;700;800;900&family=Rubik:wght@500&display=swap');
html, body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100vh;
  font-family: Orbitron, sans-serif;
}

body {
  background-color: #1a1a1a;
  overflow-x: hidden;
}

header {
  width: 100%;
  box-sizing: border-box;
  padding: 5%;
  background-color: #000;
  text-align: center;
}

footer {
  margin: 100px 0px 10px 0px;
  box-sizing: border-box;
  background-color: #353535;
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 50px 5px 50px 5px;
}

footer a {
  color: #53D7FF;
  text-decoration: none;
  font-size: 9pt;
  margin: 5px;
  white-space: nowrap;
}

footer a:hover {
  opacity: .5;
}

h2 {
  color: white;
}

small {
  font-size: 8pt;
}

.logo {
  width: 100%;
  align-self: center;
}

.info {
  color: #909090;
  font-weight: 700;
  font-size: 12pt;
}

#intro {
  background-image: linear-gradient(to bottom right, #53D7FF, #6500A0);
  background-repeat: no-repeat;
  background-size: auto;
  color: #fff;
  padding: 0px;
  transition: padding .50s ease;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.more {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.more svg {
  width: 60px;
  height: 60px;
  -webkit-animation: bounce 2s;
  animation: bounce 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.more svg:hover {
  cursor: pointer;
  opacity: .5;
}

.block-piece {
  position: relative;
  left: -200%;
  width: 14%;
  height: calc(100% * 16 / 9);
  transition: left .8s ease;
}

.spacer {
  width: 100%;
  height: 100px;
}

.screenshot-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 150px 0px 150px 0px;
  overflow-x: hidden;
}

.small-padding {
  margin: 10px 0px 10px 0px;
}

.side-padding {
  margin: 0px 20px 0px 20px;
}

.screenshot {
  position: relative;
  width: 300px;
  margin: 10px;
  transition: left .8s ease;
}

.screenshot img, .screenshot video {
  width: 100%;
  border-radius: 5px;
}

.text-container {
  position: relative;
  box-sizing: border-box;
  width: 500px;
  height: 100%;
  margin: 10px;
  padding: 50px;
  transition: left .8s ease;
  color: white;
  border-radius: 5px;
  align-self: center;
}

.left-side {
  left: -100%;
}

.right-side {
  left: 100%;
}

.fade-in {
  left: 0%;
  opacity: 0;
  transition: opacity 2s ease;
}

.blue-color {
  background-color: #53D7FF7A;
}

.purple-color {
  background-color: #560CCE7A;
}

.games-played-wrapper {
  color: #53D7FF;
  font-size: 24pt;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease;
  margin: 50px 0px 50px 0px;
}

#games-played {
  font-size: 32pt;
  color: white;
}

#download-buttons {
  width: 100%;
  overflow-x: hidden;
}

.download-button {
  position: relative;
  width: 30%;
  max-width: 175px;
  min-width: 100px;
  height: 60px;
  margin-top: 50px;
  float: left;
  background-image: linear-gradient(to bottom right, #53D7FF, #6500A0);
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 5px;
  opacity: 1.0;
  transition: left .8s ease;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.download-button:hover {
  cursor: pointer;
  opacity: .75;
}

.download-button svg {
  height: 38px;
  margin: 10px 0px 0px 5px;
}

.download-button span {
  font-size: 10pt;
  margin: 12px 0px 0px 10px;
}

.download-ios {
  left: -150px;
}

.download-android {
  left: 100%;
}

.feedback-wrapper {
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  padding: 50px;
  margin: 0px auto 0px auto;
  opacity: 0.0;
  transition: opacity 2.5s ease;
}

.feedback-title {
  color: #909090;
  font-size: 16pt;
}

.comment {
  padding-top: 50px 0px 50px 0px;
  width: 100%;
}

.comment p:first-child {
  margin: 50px 0px 10px 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.display-name {
  font-size: 12pt;
  color: #53D7FF;
}

.time-stamp {
  font-size: 9pt;
  color: #808080;
  font-style: italic;
  align-self: center;
}

.comment p:nth-child(2) {
  margin: 0px;
  font-size: 12pt;
  color: gold;
}

.comment p:nth-child(3) {
  margin: 10px 0px 50px 0px;
  font-size: 10pt;
  color: #909090;
}

.comment hr {
  border-color: #560CCE;
}

@keyframes spin {
  90% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes bounce {
  0%, 25%, 50%, 75%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
  }
}

@keyframes bounce {
  0%, 25%, 50%, 75%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
  }
}

@media only screen and (max-width: 750px) {
  .text-container {
    width: 300px
  }
}

@media only screen and (max-width: 600px) {
  .feedback-wrapper {
    padding: 20px
  }
}

@media only screen and (max-width: 525px) {
  .text-container {
    width: 250px;
    font-size: 10pt;
    padding: 20px;
  }
}

@media only screen and (max-width: 475px) {
  .info {
    font-size: 7pt
  }
  .download-button span {
    font-size: 8pt;
    margin: 16px 0px 0px 5px;
  }
  .text-container {
    width: 200px;
    font-size: 8pt;
    padding: 10px;
  }
}

@media only screen and (max-width: 425px) {
  .screenshot-wrapper { margin: 50px 0px 50px 0px }  
  .download-button span {
    font-size: 6pt;
    margin: 20px 0px 0px 5px;
  }
}

@media only screen and (max-width: 300px) {
  .info {
    font-size: 6pt
  }
}