@font-face {
  font-family: "Uncut Sans";
  src: url("assets/fonts/UncutSans-Variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  background: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  background: #ffffff;
  color: #111111;
  font-family: "Uncut Sans", Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1.25;
}

.entrance {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100svh;
}

.entrance p {
  margin: 0;
}

.entrance-header,
.entrance-footer {
  position: absolute;
  left: 32px;
  right: 32px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.entrance-header {
  top: 28px;
}

.entrance-footer {
  bottom: 24px;
  color: #66645f;
}

.entrance-header p:last-child,
.entrance-footer p:last-child {
  text-align: right;
}

.model-link {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: min(62vw, 760px);
  height: min(76vh, 760px);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

model-viewer {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  cursor: pointer;
  --poster-color: transparent;
  --progress-bar-color: transparent;
  --progress-mask: transparent;
}

@media (max-width: 760px) {
  .entrance-header,
  .entrance-footer {
    left: 16px;
    right: 16px;
  }

  .entrance-header {
    top: 18px;
  }

  .entrance-footer {
    bottom: 16px;
  }

  .model-link {
    width: 82vw;
    height: 64vh;
  }
}
