body {
  background: #000;
  font-family: "Pantasia";
}

#closed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 30;
  background-color: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  display: none;
}

#church {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-image: url(assets/windows.png);
  background-size: cover;
  background-position: center center;
  filter: blur(4px);
  transition: filter 1s ease-out;
}

#church[unblur] {
  filter: blur(1px);
}

main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 0.5rem;
  font-family: "Pantasia";
  color: #fff;
  text-align: center;
  font-size: 0.5rem;
  display: flex;
  justify-content: center;
}

[instructions] {
  background: #000;
  font-family: "Pantasia";
  color: #fff;
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 70vw;
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: filter 1s ease-out;
  font-size: 0.7rem;
  filter: blur(0.4px);
}
@media only screen and (max-width: 600px) {
  [instructions] {
    display: none !important;
  }
}

#door {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  border: 2px solid red;
}
#door iframe {
  width: 100%;
  height: 100%;
  transform: scale(1.1);
}

body:hover [instructions] {
  filter: blur(0.1px);
}

#tag {
  position: fixed;
  top: 90%;
  left: 45%;
  transform: translate(8px, -1px);
  width: auto;
  white-space: nowrap;
  font-size: 0.75rem;
  z-index: 999;
  font-family: "Pantasia";
  pointer-events: none;
  text-align: left;
  background: #000;
}

#tag span {
  color: #fff;
  padding: 0.15rem 0.25rem;
}

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