@import url("https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  font-family: "Press Start 2P";
}

.main-wrapper {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

main {
  margin: 5%;
}

h1 {
  font-size: 50px;
  line-height: 75px;
  color: #fff;
  text-shadow: 0 0 5px #000;
}

h3 {
  font-size: 16.66667px;
  line-height: 75px;
  color: #7A7878;
}

.stripes-container {
  position: absolute;
  right: 30%;
  top: -50%;
  height: 200%;
  z-index: -10000;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}

.stripe1 {
  width: 16.56px;
  background: #0ACB9D;
  margin-left: 10px;
  display: inline-block;
  z-index: -9999;
  top: -1%;
  height: 100%;
}

.stripe2 {
  width: 54.2px;
  background: #EEFF2D;
  margin-left: 5px;
  display: inline-block;
  z-index: -9999;
  top: -1%;
  height: 100%;
}

.stripe3 {
  width: 15.6px;
  background: #148AF8;
  margin-left: 12.7px;
  display: inline-block;
  z-index: -9999;
  top: -1%;
  height: 100%;
}

.stripe4 {
  width: 42.3px;
  background: #A70C7B;
  margin-left: 2.7px;
  display: inline-block;
  z-index: -9999;
  top: -1%;
  height: 100%;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 35px;
  }
  h3 {
    font-size: 11.66667px;
    line-height: 16.66667px;
    background: black;
  }
}
/*# sourceMappingURL=style.css.map */