@font-face {
  src: url(/assets/fonts/FascinateInline-Regular.ttf);
  font-family: "Fascinate Inline";
}
@font-face {
  src: url(/assets/fonts/FrancoisOne-Regular.ttf) format("truetype");
  font-family: "Francois One";
}
@font-face {
  src: url(/assets/fonts/Limelight-Regular.ttf) format("truetype");
  font-family: "Limelight";
}
@font-face {
  src: url(/assets/fonts/InstrumentSerif-Regular.ttf) format("truetype");
  font-family: "Instrument Serif";
}
@font-face {
  src: url(/assets/fonts/Monoton-Regular.ttf) format("truetype");
  font-family: "Monoton";
}
body {
  background: #1b2838 none repeat scroll 0 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  cursor: url("/assets/images/cursors/remote.png") 17 1, auto;
}

a,
button {
  cursor: url("/assets/images/cursors/pointer.png") 5 3, auto;
}

.screen {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}

.scanlines .overlay {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scanlines .overlay::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/crt.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: "";
  pointer-events: none;
}
.scanlines .overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: " ";
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

@keyframes blur {
  0% {
    filter: blur(1px);
    opacity: 0.8;
  }
  50% {
    filter: blur(1px);
    opacity: 1;
  }
  100% {
    filter: blur(1px);
    opacity: 0.8;
  }
}
@keyframes jerk {
  50% {
    transform: translateX(1px);
  }
  51% {
    transform: translateX(0);
  }
}
@keyframes jerkup {
  0% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes glitch1 {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(0);
  }
  31% {
    transform: translateX(3px);
  }
  32% {
    transform: translateX(0);
  }
  98% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(3px);
  }
}
@keyframes glitch2 {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(0);
  }
  31% {
    transform: translateX(-3px);
  }
  32% {
    transform: translateX(0);
  }
  98% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3px);
  }
}
@keyframes glitch {
  40% {
    opacity: 1;
    transform: scale(1, 1);
    transform: skew(0, 0);
  }
  41% {
    opacity: 0.8;
    transform: scale(1, 1.2);
    transform: skew(80deg, 0);
  }
  42% {
    opacity: 0.8;
    transform: scale(1, 1.2);
    transform: skew(-50deg, 0);
  }
  43% {
    opacity: 1;
    transform: scale(1, 1);
    transform: skew(0, 0);
  }
}
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 95.2380952381%;
  height: 95.2380952381%;
  background-image: url("/assets/images/home-background.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 0;
  overflow-y: auto;
  color: black;
  transform: translate(-50%, -50%) scale(1.05) perspective(1000px) rotateX(0deg);
  clip-path: ellipse(98% 94% at 50% 50%);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main {
  width: 100%;
  margin: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  overflow-y: auto;
  scrollbar-width: none;
}

.hero-title {
  color: silver;
  font-family: "Fascinate Inline", system-ui;
  font-size: 80px;
  text-align: center;
  margin: 0;
  filter: blur(0.7px);
  animation: jerkup 100ms infinite, glitch1 2s infinite;
  animation: jerkup 100ms infinite;
}

.metal {
  position: relative;
  font-weight: 900;
  pointer-events: none;
  color: transparent;
  background: linear-gradient(to bottom, #ffffff 0%, #b8b8b8 25%, #6e6e6e 45%, #f5f5f5 50%, #7a7a7a 70%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metal::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.1) 45%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.1) 55%, transparent 60%);
  background-size: 200% 100%;
  background-position: -200% 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% 0;
  }
}
.retrace-lines-left {
  width: auto;
  height: 100%;
  display: flex;
}
.retrace-lines-left span {
  display: block;
  height: 100%;
  animation: jerkup 1000ms infinite;
  animation: glitch2 5s infinite;
}
.retrace-lines-left span:nth-child(1) {
  width: 8px;
  background: #BCB8B9;
}
.retrace-lines-left span:nth-child(2) {
  width: 11px;
  background: #AAB40D;
}
.retrace-lines-left span:nth-child(3) {
  width: 14px;
  background: #24C4AE;
}
.retrace-lines-left span:nth-child(4) {
  width: 17px;
  background: #2DD612;
}
.retrace-lines-left span:nth-child(5) {
  width: 20px;
  background: #30302f;
}
.retrace-lines-left span:nth-child(6) {
  width: 23px;
  background: #BC15D0;
}
.retrace-lines-left span:nth-child(7) {
  width: 26px;
  background: #AE051A;
}
.retrace-lines-left span:nth-child(8) {
  width: 29px;
  background: #1b14bb;
}

.retrace-lines-right {
  width: auto;
  height: 100%;
  display: flex;
}
.retrace-lines-right span {
  display: block;
  height: 100%;
  animation: jerkup 1000ms infinite;
  animation: glitch2 5s infinite;
}
.retrace-lines-right span:nth-child(1) {
  width: 29px;
  background: #1b14bb;
}
.retrace-lines-right span:nth-child(2) {
  width: 26px;
  background: #AE051A;
}
.retrace-lines-right span:nth-child(3) {
  width: 23px;
  background: #BC15D0;
}
.retrace-lines-right span:nth-child(4) {
  width: 20px;
  background: #30302f;
}
.retrace-lines-right span:nth-child(5) {
  width: 17px;
  background: #2DD612;
}
.retrace-lines-right span:nth-child(6) {
  width: 14px;
  background: #24C4AE;
}
.retrace-lines-right span:nth-child(7) {
  width: 11px;
  background: #AAB40D;
}
.retrace-lines-right span:nth-child(8) {
  width: 8px;
  background: #BCB8B9;
}

.container-home {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  height: 100%;
  max-height: 940px;
  margin: auto;
  box-sizing: border-box;
  padding: 5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  row-gap: 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-1px);
  }
  100% {
    transform: translatey(0px);
  }
}
.nav-img-container {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: float 1000ms infinite;
}
.nav-img-container:hover .nav-img-title {
  color: #E7D4C2;
  text-shadow: -2px -2px 0 black, 2px -2px 0 black, -2px 2px 0 black, 2px 2px 0 black;
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
}

.nav-img {
  width: 100%;
  height: 100%;
  max-height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 0 0 #BCB8B9) drop-shadow(0.5px 0.5px 0 #AAB40D) drop-shadow(1px 1px 0 #24C4AE) drop-shadow(1.5px 1.5px 0 #2DD612) drop-shadow(2px 2px 0 #30302f) drop-shadow(2.5px 2.5px 0 #BC15D0) drop-shadow(3px 3px 0 #AE051A) drop-shadow(3.5px 3.5px 0 #1b14bb);
}

.nav-img-title {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  color: black;
  font-size: 24px;
  text-shadow: -2px -2px 0 #E7D4C2, 2px -2px 0 #E7D4C2, -2px 2px 0 #E7D4C2, 2px 2px 0 #E7D4C2;
  padding: 2px 8px;
  font-family: "Francois One", sans-serif;
  text-align: center;
}

.top-left {
  justify-content: flex-start;
  align-items: flex-start;
}

.top-right {
  justify-content: flex-end;
  align-items: flex-start;
}

.bottom-left {
  justify-content: flex-start;
  align-items: flex-end;
}

.bottom-right {
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 350px;
  height: auto;
  animation: jerkup 100ms infinite, glitch1 2s infinite;
}

@media (max-width: 1024px) {
  .retrace-lines-left span:nth-child(1) {
    width: 5px;
    background: #BCB8B9;
  }
  .retrace-lines-left span:nth-child(2) {
    width: 10px;
    background: #AAB40D;
  }
  .retrace-lines-left span:nth-child(3) {
    width: 15px;
    background: #24C4AE;
  }
  .retrace-lines-left span:nth-child(4) {
    width: 20px;
    background: #2DD612;
  }
  .retrace-lines-left span:nth-child(5) {
    width: 25px;
    background: #30302f;
  }
  .retrace-lines-left span:nth-child(6) {
    width: 30px;
    background: #BC15D0;
  }
  .retrace-lines-left span:nth-child(7) {
    width: 35px;
    background: #AE051A;
  }
  .retrace-lines-left span:nth-child(8) {
    width: 40px;
    background: #1b14bb;
  }
  .retrace-lines-right span:nth-child(1) {
    width: 40px;
    background: #1b14bb;
  }
  .retrace-lines-right span:nth-child(2) {
    width: 35px;
    background: #AE051A;
  }
  .retrace-lines-right span:nth-child(3) {
    width: 30px;
    background: #BC15D0;
  }
  .retrace-lines-right span:nth-child(4) {
    width: 25px;
    background: #30302f;
  }
  .retrace-lines-right span:nth-child(5) {
    width: 20px;
    background: #2DD612;
  }
  .retrace-lines-right span:nth-child(6) {
    width: 15px;
    background: #24C4AE;
  }
  .retrace-lines-right span:nth-child(7) {
    width: 10px;
    background: #AAB40D;
  }
  .retrace-lines-right span:nth-child(8) {
    width: 5px;
    background: #BCB8B9;
  }
}
@media (max-width: 768px) {
  .retrace-lines-left span:nth-child(1) {
    width: 1px;
    background: #BCB8B9;
  }
  .retrace-lines-left span:nth-child(2) {
    width: 3px;
    background: #AAB40D;
  }
  .retrace-lines-left span:nth-child(3) {
    width: 5px;
    background: #24C4AE;
  }
  .retrace-lines-left span:nth-child(4) {
    width: 7px;
    background: #2DD612;
  }
  .retrace-lines-left span:nth-child(5) {
    width: 9px;
    background: #30302f;
  }
  .retrace-lines-left span:nth-child(6) {
    width: 11px;
    background: #BC15D0;
  }
  .retrace-lines-left span:nth-child(7) {
    width: 13px;
    background: #AE051A;
  }
  .retrace-lines-left span:nth-child(8) {
    width: 15px;
    background: #1b14bb;
  }
  .retrace-lines-right span:nth-child(1) {
    width: 15px;
    background: #1b14bb;
  }
  .retrace-lines-right span:nth-child(2) {
    width: 13px;
    background: #AE051A;
  }
  .retrace-lines-right span:nth-child(3) {
    width: 11px;
    background: #BC15D0;
  }
  .retrace-lines-right span:nth-child(4) {
    width: 9px;
    background: #30302f;
  }
  .retrace-lines-right span:nth-child(5) {
    width: 7px;
    background: #2DD612;
  }
  .retrace-lines-right span:nth-child(6) {
    width: 5px;
    background: #24C4AE;
  }
  .retrace-lines-right span:nth-child(7) {
    width: 3px;
    background: #AAB40D;
  }
  .retrace-lines-right span:nth-child(8) {
    width: 1px;
    background: #BCB8B9;
  }
  .nav-img-title {
    font-size: 18px;
  }
  .logo {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .retrace-lines-left span:nth-child(1) {
    width: 1px;
    background: #BCB8B9;
  }
  .retrace-lines-left span:nth-child(2) {
    width: 2px;
    background: #AAB40D;
  }
  .retrace-lines-left span:nth-child(3) {
    width: 3px;
    background: #24C4AE;
  }
  .retrace-lines-left span:nth-child(4) {
    width: 4px;
    background: #2DD612;
  }
  .retrace-lines-left span:nth-child(5) {
    width: 5px;
    background: #30302f;
  }
  .retrace-lines-left span:nth-child(6) {
    width: 6px;
    background: #BC15D0;
  }
  .retrace-lines-left span:nth-child(7) {
    width: 7px;
    background: #AE051A;
  }
  .retrace-lines-left span:nth-child(8) {
    width: 8px;
    background: #1b14bb;
  }
  .retrace-lines-right span:nth-child(1) {
    width: 8px;
    background: #1b14bb;
  }
  .retrace-lines-right span:nth-child(2) {
    width: 7px;
    background: #AE051A;
  }
  .retrace-lines-right span:nth-child(3) {
    width: 6px;
    background: #BC15D0;
  }
  .retrace-lines-right span:nth-child(4) {
    width: 5px;
    background: #30302f;
  }
  .retrace-lines-right span:nth-child(5) {
    width: 4px;
    background: #2DD612;
  }
  .retrace-lines-right span:nth-child(6) {
    width: 3px;
    background: #24C4AE;
  }
  .retrace-lines-right span:nth-child(7) {
    width: 2px;
    background: #AAB40D;
  }
  .retrace-lines-right span:nth-child(8) {
    width: 1px;
    background: #BCB8B9;
  }
  .nav-img-title {
    font-size: 16px;
  }
  .nav-img-container {
    width: 65%;
    order: 2;
  }
  .hero-title-container {
    order: 1;
  }
  .logo {
    width: 80%;
  }
}
.container-gallery {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  background-color: #c1bab0;
  animation: jerkup 1000ms infinite;
}

.hero-title-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-menu {
  width: auto;
  height: auto;
  padding: 0.3rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1b14bb;
  color: #AAB40D;
  border: 1px solid black;
  font-family: "Instrument Serif", serif;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}
.home-menu:hover {
  text-decoration: underline;
}

.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
}

.page-title-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #751d69;
  box-sizing: border-box;
  padding: 2rem 0 0 0;
}

.page-title {
  font-size: 150px;
  color: #E7D4C2;
  text-transform: uppercase;
  font-family: "Monoton", sans-serif;
  text-align: center;
  margin: 0;
  filter: blur(0.5px);
}

.hero-preview {
  width: 100%;
  aspect-ratio: 21/7;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #1c1c19;
}

.hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.gallery-info-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 2rem 2rem;
}

.gallery-info {
  font-size: 24px;
  text-align: left;
  color: black;
  font-family: "Instrument Serif", serif;
  font-weight: 500;
  margin: 1rem 5rem;
}

.gallery {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gallery-container {
  -moz-columns: 2;
       columns: 2;
}

.gallery-img {
  width: 100%;
  margin-bottom: 1rem;
  display: block;
  border: 1px solid #1c1c19;
  cursor: url("/assets/images/cursors/camera.png") 16 16, auto;
}

.previewer {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  margin: 0;
  top: 0;
  left: 0;
  background-color: rgba(28, 28, 25, 0.4745098039);
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5vh 2.5vw;
  box-sizing: border-box;
}

.img-board {
  display: inline-flex;
  max-width: 95vw;
  max-height: 95vh;
  max-height: 95dvh;
  justify-content: center;
  align-items: center;
  animation: glitch2 5s infinite;
  box-sizing: border-box;
}

.fullscreen-img {
  max-width: 90vw;
  max-height: 90vh;
  max-height: 90dvh;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  border: 5px solid #c1bab0;
  box-sizing: border-box;
}

.close-preview {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(5px, 10px);
  margin: 1rem;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1b14bb;
  color: #AAB40D;
  border: 1px solid black;
  font-size: 18px;
  font-family: "Instrument Serif", serif;
}
.close-preview:hover {
  text-decoration: underline;
}

.hidden {
  display: none;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 60px;
  }
  .page-title {
    font-size: 140px;
  }
  .gallery-info {
    font-size: 22px;
    margin: 1rem 1rem;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 50px;
  }
  .page-title {
    font-size: 80px;
  }
  .gallery {
    -moz-column-gap: 0.3rem;
         column-gap: 0.3rem;
  }
  .gallery-img {
    margin-bottom: 0.3rem;
  }
  .hero-preview {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 40px;
  }
  .page-title {
    font-size: 50px;
  }
  .gallery-info {
    font-size: 18px;
    margin: 1rem 1rem;
  }
  .home-menu {
    font-size: 18px;
  }
}
.hero-preview-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 2rem;
}

.color-lines {
  width: 100%;
  height: auto;
  display: flex;
  gap: 0.2rem;
  flex-direction: column;
  position: absolute;
  bottom: -2rem;
  z-index: 1;
}
.color-lines span {
  display: block;
  width: 100%;
  animation: jerkup 1000ms infinite;
  animation: glitch2 5s infinite;
}
.color-lines span:nth-child(1) {
  height: 15px;
  background: #E5D2C1;
}
.color-lines span:nth-child(2) {
  height: 20px;
  background: #425371;
}
.color-lines span:nth-child(3) {
  height: 25px;
  background: #FFBC03;
}
.color-lines span:nth-child(4) {
  height: 30px;
  background: #751D69;
}

.footer {
  margin-top: 0.2rem;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1b14bb;
  overflow: hidden;
}

.footer-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}/*# sourceMappingURL=style.css.map */