* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Georgia", serif;
}

body {
  background: #7b2c36;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.page {
  position: relative;
  width: 420px;
}

/* Kostkované pozadí */
.content {
  background:
    repeating-linear-gradient(
      45deg,
      #f3b6b6 0,
      #f3b6b6 10px,
      #f7caca 10px,
      #f7caca 20px
    );
  padding: 40px 28px;
  border-radius: 6px;
}

/* Nadpis */
h1 {
  text-align: center;
  font-size: 46px;
  margin-bottom: 30px;
  color: #4a2430;
}

/* Sekce */
section {
  margin-bottom: 28px;
}

h2, h3 {
  color: #5a2b36;
  margin-bottom: 10px;
}

p, li {
  font-size: 14px;
  line-height: 1.5;
}

ul {
  margin-left: 18px;
}

/* Rámeček dole */
.photo-frame {
  margin: 40px auto 0;
  width: 170px;
  height: 140px;
  border-radius: 16px;
  border: 6px solid #f28c8c;
}

/* Dekorativní obrázky */
.decor {
  position: absolute;
  width: 90px;
}

.top-left {
  top: -30px;
  left: -40px;
}

.top-right {
  top: -30px;
  right: -40px;
}

.mid-left {
  top: 35%;
  left: -50px;
}

.mid-right {
  top: 40%;
  right: -50px;
}

.bottom-left {
  bottom: -40px;
  left: -40px;
}

.bottom-right {
  bottom: -40px;
  right: -40px;
}
