:root {
  --orange: #b95f39;
  --button-bg: rgba(255, 244, 236, 0.92);
  --button-text: #ae5c34;
  --button-shadow: rgba(89, 47, 24, 0.24);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: var(--orange);
  font-family: Baskerville, Georgia, "Times New Roman", serif;
}

.page {
  width: 100%;
}

.poster-frame {
  position: relative;
  width: 100%;
  line-height: 0;
}

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

.poster-button {
  position: absolute;
  left: 50%;
  bottom: 2.4%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(16.8rem, 70vw);
  padding: 1.14rem 2.4rem;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-text);
  text-decoration: none;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 32px var(--button-shadow);
}

@media (max-width: 768px) {
  .poster-frame {
    overflow: hidden;
  }

  .poster-image {
    width: 126%;
    max-width: none;
    margin-left: -13%;
  }

  .poster-button {
    bottom: 1.8%;
    min-width: min(4.96rem, 30.4vw);
    padding: 0.27rem 0.5rem;
    font-size: clamp(0.46rem, 1.6vw, 0.56rem);
  }
}
