@font-face {
  font-family: "Press Start 2P";
  src: url("../fonts/PressStart2P.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  cursor: pointer;
  text-align: center;
  font-family: "Press Start 2P", cursive;
  color: #fff;
  background: #000;
}

.stroke {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 20px;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.content__score {
  display: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 5vh;
  left: 5vh;
  font-size: 4rem;
}
.content__score--show {
  display: block;
}
.content__modal {
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5019607843);
}
.content__modal__text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  line-height: 1.5;
}
.content__modal__text__top__name {
  font-size: 3rem;
}
.content__modal__text__top__score {
  padding-top: 5vh;
  font-size: 2.4rem;
}
.content__modal__text__top__highscore {
  padding-top: 4vh;
  font-size: 1.2rem;
}
.content__modal__text__click {
  max-width: 80%;
  padding-top: 30vh;
  font-size: 1.5rem;
  -webkit-animation: blink 1200ms ease-in-out infinite alternate;
  animation: blink 1200ms ease-in-out infinite alternate;
}
.content__modal--hide {
  display: none;
}

.fullscreen {
  position: absolute;
  top: 3vh;
  right: 3vh;
  width: 2rem;
  cursor: pointer;
  opacity: 0.8;
  font-size: 4rem;
}
.fullscreen__icon__top, .fullscreen__icon__bottom {
  transition: transform 1s;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.fullscreen--close .fullscreen__icon__top {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.fullscreen--close .fullscreen__icon__bottom {
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

@media only screen and (orientation: portrait) {
  .content__score {
    font-size: 3rem;
  }
  .content__modal__text__top__name {
    font-size: 2.4rem;
  }
  .content__modal__text__top__score {
    font-size: 1.8rem;
  }
  .fullscreen {
    height: 2.4rem;
  }
}

/*# sourceMappingURL=style.css.map */
