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

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  background: linear-gradient(135deg, #f6f0e7, #f2d9c3);
  color: #2b2b2b;
}

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

.banner {
  width: min(1100px, 100%);
  display: block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.banner__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
