.home.active {
  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: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  min-width: 37rem;
}

.home.active div {
  display: none;
}

.home.active #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 #close:hover {
  cursor: pointer;
  -webkit-transition: ease-in-out;
  transition: ease-in-out;
}

.home.active 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 ul a {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

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