*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(138, 55, 45, 0.75), transparent 28%),
    radial-gradient(circle at bottom right, rgba(130, 54, 47, 0.7), transparent 32%),
    linear-gradient(180deg, #2a120f 0%, #140807 100%);
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  width: min(100%, 1680px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2.5vw, 2rem);
}

.hero-media {
  display: block;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}
