@import url("https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&display=swap");
@font-face {
  font-family: "Quadrant Text Mono";
  src: url("QuadrantTextMono-RegularItalic.woff2") format("woff2"), url("QuadrantTextMono-RegularItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Quadrant Text Mono";
  src: url("QuadrantTextMono-Regular.woff2") format("woff2"), url("QuadrantTextMono-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sweet Fancy Script";
  src: url("SweetFancyScript.woff2") format("woff2"), url("SweetFancyScript.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sweet Fancy Script";
  src: url("SweetFancyScript-Light.woff2") format("woff2"), url("SweetFancyScript-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

:root {
  --scriptFont: "Sweet Fancy Script";
  --bodyFont: "Quadrant Text Mono";
}

:root {
  --pink: #F38DA7;
  --pink-light: #F3BEBC;
  --red: #FB4201;
  --orange: #F09318;
  --yellow: #E7C615;
  --green: #72BA3E;
  --blue: #90C1E1;
  --brown: #BD9067;
  --gray: #9c9c9c;
  --white: #fff;
  --bg: #121212;
  --text: #fff;
  --text-shadow: #fff;
  --hover-shadow:#fff;
  --hover-shadow-light:#fff;
}

#frame, #photo, #text, #decor, #tint, #bg {
  position: fixed;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

#decor video {
  object-fit: cover;
}

iframe {
  border: 0;
}

body {
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--bodyFont);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

#text {
  z-index: 50;
}

#aboveground {
  z-index: 4;
}

#foreground {
  z-index: 2;
}

#background {
  z-index: 1;
}

#debug {
  position: absolute;
  pointer-events: auto;
  z-index: 150;
}

#place {
  position: absolute;
  width: 100%;
  height: 100%;
  background: none;
  z-index: 2;
  pointer-events: auto;
}
#place * {
  position: absolute;
}
#place img {
  background: none;
  display: inline-block;
}
#place span {
  padding: 0.25rem;
  background: #000;
  box-shadow: 0 0 30px #000, 0 0 30px #000, 0 0 30px #000, 0 0 10px #000;
  border-radius: 6px;
  font-size: 0.8rem;
}
#place span.l {
  background: #fff;
  box-shadow: 0 0 30px #fff, 0 0 30px #fff, 0 0 30px #fff, 0 0 10px #fff;
  color: #000;
}

/* link style */
a {
  color: #fff;
  background: #000;
  box-shadow: 0 0 30px #000, 0 0 30px #000, 0 0 30px #000, 0 0 10px #000;
  border-radius: 6px;
  font-size: 0.8rem;
  padding: 0.25rem;
  text-decoration: none;
  z-index: 10;
}
a:hover {
  font-style: italic;
}

#page {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: filter 1s ease-in-out;
}

#page::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  pointer-events: none;
}

#img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.img {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: transparent;
  pointer-events: none;
}
.img[s=cover] img {
  object-fit: cover;
  width: 100%;
}
.img[s=fit] img {
  object-fit: fit;
  width: 100%;
}

#aboveground img {
  max-width: 100%;
  max-height: 100%;
  padding: 1rem;
  background-size: contain;
  object-fit: contain;
}

#foreground img {
  width: 100%;
  height: 100%;
  background-size: cover;
  object-fit: cover;
}

#background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* special images */
img[src=""] {
  display: none;
}

.img.showOnHover {
  opacity: 0;
}
.img.showOnHover:hover {
  opacity: 1;
}

/* 
 special objects
*/
.flower::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100vh;
  box-shadow: 0 0 20px inset #fff, 0 0 20px inset #fff, 0 0 20px inset #fff, 0 0 20px inset #fff;
  z-index: 100;
}

#text {
  position: absolute;
  bottom: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
  text-align: center;
  line-height: 130%;
  font-size: 0.8rem;
  padding: 5vh 5vw;
}
#text .wrapper {
  margin: 1rem auto;
  padding: 0.25rem 1rem;
  display: inline-block;
  background: #fff;
  box-shadow: 0 0 30px #fff, 0 0 30px #fff, 0 0 30px #fff, 0 0 10px #fff;
  border-radius: 6px;
  color: #000;
  font-style: italic;
}
#text[pre] .wrapper {
  white-space: pre-wrap;
  text-align: center;
}
#text[s*=title] {
  font-size: 6rem;
  line-height: 90%;
  justify-content: center;
  font-family: var(--scriptFont);
}
#text[s*=title] .wrapper {
  background: none;
  box-shadow: none;
  color: #fff;
}
#text[s*=small] .wrapper {
  font-size: 0.6rem;
  background: #fff;
  color: #000;
  font-style: italic;
}
#text[s*=smallDark] .wrapper {
  font-size: 0.6rem;
  background: #000;
  color: #FF62D5;
  font-style: italic;
  box-shadow: 0 0 10px #000;
}
#text[s*=remember] {
  font-family: "UnifrakturCook", cursive;
  font-size: 4.7rem;
  font-weight: normal;
  color: #FF62D5;
  justify-content: center;
  pointer-events: none;
  z-index: 20;
  mix-blend-mode: screen;
  text-shadow: none;
}
#text[s*=memory] {
  font-size: 1.2rem;
  line-height: 130%;
  justify-content: center;
  font-family: var(--bodyFont);
  font-style: italic;
  animation: memoryFade 8s ease-in-out infinite;
}
#text[s*=memory] .wrapper {
  max-width: 75%;
  background: #fff;
  box-shadow: 0 0 40px #fff, 0 0 40px #fff, 0 0 30px #fff, 0 0 30px #fff, 0 0 30px #fff, 0 0 10px #fff;
  border-radius: 12px;
  color: #000;
}
@keyframes memoryFade {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
#text[s*=action] {
  justify-content: center;
  font-size: 4rem;
  font-family: var(--scriptFont);
}
#text[s*=action] .wrapper {
  border-radius: 32px;
}
#text.center {
  justify-content: center;
}
#text button {
  display: block;
  margin: 0 auto;
  background: none;
  color: #fff;
  border: 0;
  font-family: "Quadrant Text Mono";
  font-size: 1.25rem;
}

/*

    decor

*/
.decor {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 40;
}

.decor[decor=gradientBlack] {
  box-shadow: inset 0 0 100px 20px #000, inset 0 0 100px #000, inset 0 0 100px #000;
}

.decor[decor=gradient] {
  box-shadow: inset 0 0 100px 20px #fff, inset 0 0 100px #fff, inset 0 0 100px #fff;
}

.decor[decor=metal] {
  background-image: url("/a/txt/texture.gif");
}

[decor=noise] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 40;
  background-image: url("/a/txt/noise.gif");
  background-size: 25%;
  background-position: center;
  background-repeat: repeat;
  opacity: 0.8;
  mix-blend-mode: overlay;
}

[fx=rainbow] {
  animation: rainbow-hue 30s linear infinite;
  filter: hue-rotate(0deg);
}

@keyframes rainbow-hue {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(720deg);
  }
}
#page[mode=dark] #text {
  color: var(--white);
}
#page[mode=dark] #bg::after {
  filter: invert(0);
}

#page.grayscale {
  filter: grayscale(1) contrast(1.5) brightness(1.1);
}

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