@charset "UTF-8";
@font-face {
  font-family: "Allura";
  src: url("Allura-Regular.woff2") format("woff2"), url("Allura-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Reckless Neue Book";
  src: url("RecklessNeue-BookItalic.woff2") format("woff2"), url("RecklessNeue-BookItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Reckless Neue Book";
  src: url("RecklessNeue-Book.woff2") format("woff2"), url("RecklessNeue-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

body {
  background: #000;
  overflow: hidden;
  font-family: "Reckless Neue Book";
}

#border {
  position: fixed;
  width: 95%;
  max-height: 50vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  display: none;
}
#border img {
  width: auto;
  height: auto;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

#bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -99;
}

#jar {
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  place-items: center;
  z-index: 99;
  opacity: 1;
  transition: opacity 0.8s linear, filter 5s linear, transform 1.2s ease-in-out, width 3s ease-in-out, height 3s ease-in-out;
  cursor: pointer;
}
#jar img {
  max-height: 75vh;
  max-width: 70vw;
  width: 320px;
  margin: 0 auto;
  margin-top: 2rem;
  transition: opacity 0.8s linear, filter 5s linear, transform 1.2s ease-in-out;
  animation: jarMovement 13s infinite, jarSize 24s infinite;
  animation-direction: alternate;
}
#jar .container {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  place-items: center;
  width: 100%;
  height: 100%;
}

@keyframes jarMovement {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(75deg);
  }
}
@keyframes jarSize {
  0% {
    width: 320px;
  }
  40% {
    width: 320px;
  }
  50% {
    width: 160px;
  }
  60% {
    width: 160px;
  }
  70% {
    width: 80px;
  }
  100% {
    width: 320px;
  }
}
#jar:hover {
  opacity: 1;
}
#jar:hover img {
  transform: scale(1.05);
  filter: brightness(1.2);
}
#jar:hover #info .details {
  opacity: 1;
}

#jar.done img {
  margin-top: 70vh;
  max-height: 85vh;
  max-width: 40vw;
}

#player {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-height: 100%;
  height: 1200px;
  max-width: 1600px;
  margin-top: 0rem;
  z-index: -95;
  overflow: hidden;
}
#player .video {
  transform: scale(1.2);
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#player .contain {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#player .containone {
  clip-path: url(#patternone);
}
#player .containtwo {
  position: absolute;
  top: 0px;
  left: 0px;
  clip-path: url(#patterntwo);
}
#player .containthree {
  position: absolute;
  top: 0px;
  left: 38px;
  clip-path: url(#patternthree);
}
#player .containfour {
  position: absolute;
  top: 1px;
  left: 1px;
  clip-path: url(#patternfour);
}

#info {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 2rem;
  color: #fff;
  transition: opacity 0.8s linear, filter 5s linear, transform 1.2s ease-in-out;
  display: none;
  z-index: 12244;
  background-size: cover;
  background-position: center center;
}
#info .details {
  position: absolute;
  width: 94%;
  display: flex;
  bottom: 30px;
  padding: 1rem;
  color: red;
  font-family: "Allura";
}
#info .details {
  display: flex;
  flex-direction: row;
  font-size: 2.5rem;
  letter-spacing: -0.8px;
  place-items: center;
  justify-content: space-between;
}
#info .details span {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#info [craft]::before {
  content: "Craft · ";
}
#info [function]::before {
  content: "Function · ";
}
#info [material]::before {
  content: "Material · ";
}
#info h1[object] {
  position: fixed;
  top: 180px;
  left: 0;
  margin: 0;
  padding: 2rem;
  font-size: 4.2rem;
  text-align: center;
  line-height: 85%;
  text-overflow: ellipsis;
  width: 95%;
  font-family: "Allura";
  color: red;
  max-height: 340px;
  text-overflow: ellipsis;
  overflow: hidden;
}

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