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

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

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #cf000b 0%, #e60012 44%, #ff1728 100%);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.logo-wrap {
  width: min(100%, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-2vh);
}

.book-logo {
  position: relative;
  width: clamp(82px, 12vw, 132px);
  height: clamp(66px, 9vw, 104px);
  margin-bottom: clamp(22px, 3.2vw, 34px);
}

.book-logo span {
  position: absolute;
  top: 0;
  width: 48%;
  height: 84%;
  border: clamp(4px, 0.7vw, 7px) solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.03);
}

.page-left {
  left: 5%;
  border-radius: 10px 3px 8px 10px;
  transform: skewY(4deg);
}

.page-right {
  right: 5%;
  border-radius: 3px 10px 10px 8px;
  transform: skewY(-4deg);
}

.book-logo::before,
.book-logo::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 25%;
  height: clamp(4px, 0.65vw, 7px);
  border-radius: 999px;
  background: #183d9d;
  box-shadow: 0 clamp(12px, 1.9vw, 20px) 0 #183d9d;
}

.book-logo::before {
  left: 18%;
  top: 27%;
}

.book-logo::after {
  right: 18%;
  top: 21%;
}

h1 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15em;
  color: #ffffff;
  font-size: clamp(52px, 11vw, 126px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 300;
}

h1 strong {
  font-weight: 900;
  letter-spacing: -0.055em;
}

p {
  margin-top: clamp(18px, 3vw, 30px);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .page {
    padding: 24px;
  }

  h1 {
    flex-direction: column;
    gap: 0;
    font-size: clamp(54px, 18vw, 86px);
  }

  p {
    letter-spacing: 0.12em;
  }
}
