/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/

*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html, body {
  height: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root, #__next {
  isolation: isolate;
}

.title {
  font-family: 'Barriecito', cursive;
  font-size: 40px;
  color: #fff;
  position: absolute;
  top: 10px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
}


.score {
  font-family: 'Barriecito', cursive;
  font-size: 22px;
  color: #fff;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.get-started {
  font-family: 'Barriecito', cursive;
  font-size: 18px;
  color: #fff;
  position: absolute;
  top: 200px;
  left: 50%;
  pointer-events: none;
  text-align: center;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
}

.reload {
  display: none;
  height: 80px;
  width: 80px;
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.reload button {
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.reload svg {
  width: 100%;
}

.wrapper {
  overflow: hidden;
  padding: 0px;
  height: 100vh;
  width: 100vw;
}

.inner {
  position: relative;
  height: 100%;
  width: 100%;
}

.angle-pivot {
  bottom: 90px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.angle-line {
  height: 250px;
  position: relative;
  transform: rotate(45deg);
  transform-origin: 50% 100%;
  width: 7px;
}

.angle-power {
  height: 100%;
  transform: rotate(180deg);
}

.angle-power-inner {
  background: rgb(33, 255, 109);
  box-shadow: 0 0 2px rgb(101, 254, 155);
  border-radius: 4px;
  height: 100%;
  transform: rotate(180deg);
}

.info {
  position: absolute;
  top: 0;
  z-index: 1;
}

main {
  background-image: url(bg2.png);
  background-repeat: repeat-x;
  background-size: cover;
  background-position: 50% 100%;
  position: absolute;
  top: 0;
  bottom: 0;
}

@media (min-width: 600px) {
  .title {
    font-size: 48px;
  }

  .score {
    font-size: 28px;
  }
}

.author {
  color: #fff;
  position: absolute;
  bottom: 2px;
  right: 4px;
  z-index: 10;
}

.author a {
  color: #fff;
  font-family: 'Barriecito', cursive;
}
