* {
  box-sizing: border-box;
  user-select: none;
}

@font-face {
  font-family: "Panama Monospace";
  src: url("PanamaMonospace-Regular.woff2") format("woff2"), url("PanamaMonospace-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1979F1 0%, #7BC2F8 48.5%, #C5C5C5 77%, #000 100%);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-image: url(clouds.gif);
}
main .frame-standout {
  position: absolute;
  background: red;
  width: 620px;
  max-width: 90%;
  height: 320px;
  z-index: 150;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -160px);
  overflow: hidden;
  pointer-events: none;
  text-align: center;
  border: 8px ridge red;
}
main .frame-standout span {
  color: yellow;
  font-size: 3rem;
  font-family: "Panama Monospace";
  font-weight: bold;
  position: relative;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
main .frame-standout video {
  width: 100%;
  height: 100%;
  transform: scale(1.4);
  object-fit: cover;
}
main .frames {
  position: relative;
  height: 100%;
  width: 100vw;
  z-index: 10;
  overflow: hidden;
}
main .frames-wrapper {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 48s linear infinite;
  display: flex;
  margin-top: 8vh;
}
main .thing {
  position: absolute;
  z-index: 99;
  height: 150px;
  width: 150px;
  left: 100px;
  filter: saturate(1.5);
}
main .frame {
  position: relative;
  width: 260px;
  height: 690px;
  max-height: 90h;
  padding: 1rem;
  overflow: hidden;
  background: red;
  border: 8px solid red;
  border-radius: 300px;
  z-index: 9;
  margin-right: 1rem;
}
main .frame video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.15);
}
main .frame video:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: yellow;
  content: " ";
}
main .frame::after {
  border-radius: 300px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  background: yellow;
  content: " ";
  mix-blend-mode: multiply;
}
main .frame:nth-child(4n+1)::after {
  background: #5fb5ff;
}
main .frame:nth-child(4n+2)::after {
  background: #db3838;
}
main .frame:nth-child(4n+4)::after {
  background: #62ba62;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
#decor {
  position: fixed;
  z-index: 10;
}

.decor {
  position: absolute;
  z-index: 1;
}

.decor-dove {
  position: fixed;
  top: 0;
  left: 0;
  padding: 1rem;
  z-index: 900;
}

.decor-dove.dove-right {
  right: 0;
  transform: scaleX(-1);
}

.decor-border {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  pointer-events: none;
}
.decor-border img {
  min-width: 100%;
  min-height: 100vh;
}

.decor-plastic {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
  background-image: url(plastic.gif);
  background-size: cover;
  mix-blend-mode: overlay;
  transform: scale(1.2);
}

.decor-lace {
  position: fixed;
  bottom: 110px;
  left: 0;
  width: 100%;
  height: 160px;
  z-index: 1;
  pointer-events: none;
  background-image: url(lace.gif);
  transform: scaleY(-1);
  background-size: contain;
}

.decor-title {
  top: 50px;
  left: 0;
  max-height: 30vh;
  width: 100%;
  z-index: 100;
}
.decor-title img {
  object-fit: cover;
  width: 100%;
}

.decor-yellow {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 1;
  background: yellow;
}

span[music] {
  position: absolute;
  bottom: 0;
  color: red;
  z-index: 999;
}

#lyrics {
  position: fixed;
  z-index: 200;
  font-family: "Panama Monospace";
  bottom: 120px;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 1rem 1.5rem;
  font-size: 3.7rem;
  letter-spacing: -1px;
  line-height: 90%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#lyrics span {
  max-width: 95%;
  margin: 0 auto;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 2.5px 0 #000, 0 -2.5px 0 #000, 2.5px 0 0 #000, -2.5px 0 0 #000, -2.5px -2.5px 0 #000, 2.5px 2.5px 0 #000, 2.5px 1px 0 #000;
}

#type {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  padding: 1rem;
  margin: 1rem;
  background: red;
  z-index: 100;
  border-radius: 100%;
}
#type img {
  max-width: 90%;
  animation: rotation 18s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

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