* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: #000000;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(to bottom, #2b2b2b 0%, #000000 100%);
}

.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: 2.5vh 5vw;
}

.photo {
  display: block;
  width: auto;
  height: auto;
  max-height: 44vh;
  max-width: 100%;
}

.wordmark {
  display: block;
  width: auto;
  height: auto;
  max-height: 13vh;
  max-width: 60%;
  margin-top: 1.5vh;
}

.links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 52px);
  margin-top: 1.5vh;
}

.links a {
  display: block;
  line-height: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.links a:hover,
.links a:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.links img,
.links .icon {
  width: clamp(32px, 5.5vh, 46px);
  height: clamp(32px, 5.5vh, 46px);
  display: block;
}
