* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
}

:root {
  font-size: 62.5%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.home.active #play {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.home.active #modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.home.active #modal div {
  display: none;
}

.home.active #modal #close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 4.5rem;
  right: 3.2rem;
  font: bold 3.5rem 'Righteous', cursive;
  color: #b5e3ea;
  padding: .2rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 0.1rem solid #b5e3ea;
  border-radius: 1.2rem;
  -webkit-transition: .2s ease-in;
  transition: .2s ease-in;
}

.home.active #modal #close:hover {
  cursor: pointer;
  -webkit-transition: ease-in-out;
  transition: ease-in-out;
}

.home.active #modal ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 40rem;
  height: 20rem;
  list-style: none;
}

.home.active #modal ul a {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.home.active #modal ul a li {
  font: 4rem 'Righteous', cursive;
  color: #b5e3ea;
  cursor: pointer;
  -webkit-transition: ease-in-out .2s;
  transition: ease-in-out .2s;
}

.home.active #modal ul a li:hover {
  color: #e9bf5c;
  text-shadow: 0.1rem 0.1rem 0.1rem #9c3c37;
  list-style-image: url("../images/punch-favicon.png");
}

#content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100vw;
  height: 100vh;
  background: url("../images/main-background.webp") no-repeat center/cover;
}

#content #play {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30rem;
  height: 19.8rem;
  margin-right: 5.5rem;
  -webkit-transition: .2s ease-in;
  transition: .2s ease-in;
}

#content #play button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: .2rem;
  height: 100%;
  width: 100%;
  background: url("../images/play.webp") no-repeat center/contain;
  -webkit-filter: drop-shadow(0 0 2rem #e9bf5c);
          filter: drop-shadow(0 0 2rem #e9bf5c);
  cursor: pointer;
}

#content #play button p {
  left: 2%;
  position: absolute;
  font: 3rem 'Righteous', cursive;
  color: #9c3c37;
  right: 2rem;
}

#content #play:hover {
  width: 31rem;
  height: 20.5rem;
  -webkit-transition: ease-in-out;
  transition: ease-in-out;
  -webkit-filter: brightness(1.3);
          filter: brightness(1.3);
}

.home:not(.active) #modal {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 970px) {
  #content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  #content #play {
    margin: 0;
  }
}
/*# sourceMappingURL=main.css.map */