* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #eee;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}

main {
  text-align: center;
  padding: 2rem;
}

#bryant {
  max-width: min(90vw, 480px);
  width: 100%;
  height: auto;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

#bryant:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

#bryant:active {
  transform: scale(0.98);
}

.hint {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.6;
}
