html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  font-family: ui-sans-serif, system-ui, sans-serif;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

#photo {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.name {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  padding: 16px 24px 16px 20px;
  font-size: 14px;
  letter-spacing: 0.01em;
  mix-blend-mode: difference;
  cursor: pointer;
}

#modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100vh;
  background: #000;
  color: rgba(255, 255, 255, 0.8);
  z-index: 2;
  font-size: 14px;
}

#modal[hidden] {
  display: none;
}

#modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  padding: 0;
}

#modal-body {
  padding: 56px 20px 20px;
}

#contact {
  cursor: pointer;
  text-decoration: underline;
}
