body {
  color: white;
  background-color: #000;
}

.background {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  /* background: radial-gradient(ellipse at center, rgba(59, 59, 59, 1) 0%, rgba(0, 0, 0, 1) 80%); */
  background-size: 100% 70vw;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  z-index: -1;
  background-image: url('../images/bg_main.webp');
  background-size: cover;
  background-position: center;

  @media screen and (max-width: 768px) {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    /* background: radial-gradient(circle, rgba(59, 59, 59, 1) 0%, rgba(0, 0, 0, 1) 70%); */
    background-position: 0% 50%;
    background-repeat: no-repeat;
    z-index: -1;
    background-image: url('../images/bg_mobile.webp');
    background-size: cover;
    background-position: center;
  }
}

.content {
  max-width: 100vw;
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 100%;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 1.5rem;
}

.logo {
  max-width: 100px;
  height: auto;
}

main {
  height: max-content;
  width: 100%;
}

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* padding: 0 10px 30px; */
  padding: 0 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.link-icon {
  cursor: pointer;

  :hover {
    transform: scale(1.05);
  }
}

.link-icon img {
  height: auto;
  /* width: 150px; */
  width: 168px;
  transition: 0.5s;
}

model-viewer {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100vh;
  width: 100vw;
  transform: translate(-50%, -50%);
}

.ar-button-wrapper {
  position: absolute;
  bottom: 58px;
  left: 50%;
  transform: translateX(-50%);
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 10px 20px;
}

.interaction-prompt {
  width: 85px;
  opacity: 1;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.interaction-prompt-custom {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 85px;
  opacity: 0;
}

.interaction-prompt-custom.anim {
  animation: anim 10s infinite ease-in-out;
}

@keyframes anim {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  10% {
    transform: translate(calc(-50% - 20px), -50%) scale(1);
  }

  20% {
    transform: translate(calc(-50% + 20px), -50%) scale(1);
  }

  30% {
    transform: translate(-50%, -50%) scale(1);
  }

  33% {
    opacity: 1;
  }

  35% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }

  45% {
    opacity: 0;
  }

  50% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }

  60% {
    transform: translate(-50%, -50%) scale(1);
  }

  70% {
    transform: translate(-50%, -50%) scale(0.8);
  }

  80% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  85% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
}