body {
    background: repeating-linear-gradient(
      to bottom,
      #fff,
      #fff 37px,
      #cce0ff 40px
    );
    font-family: 'Patrick Hand';
    font-size: 22px;
    line-height: 40px;
    padding: 10px;
    position: relative;
  }


  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50px;
    width: 3px;
    height: 100%;
    background-color: #c47c7c;
  }

  h1 {
    text-align: center;
    font-size: 4em;
    margin-bottom: 20px;
    margin-top: 80px;
    
  }

  h2 {
    max-width: 950px;
    margin: 0 auto 20px auto;
  }

  p {
    max-width: 950px;
    margin: 0 auto 20px auto;
  }

  .image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
    max-width: 950px;
  }
  .image-row img {
    width: 35%;
    height: auto;
    border-radius: 10px;
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
    cursor: pointer;
    transform: rotate(calc(-5deg + 10deg * var(--i)));
  }
  /*.image-row img:nth-child(2) {
    transform: rotate(5deg);
  }*/
  .image-row img:nth-child(1) { --i: 0;}
  .image-row img:nth-child(2) {--i: 1;}

  .image-row img:hover {
    transform: rotate(0deg) scale(1.1);
    z-index: 1;
  }

  .page-buttons {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
  }

  .prev-page {
    text-align: left;
    margin-top: 40px;
}
  .prev-page a {
    background-color: #cce0ff;
    color:#333;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s;
  }

  .prev-page a:hover {
    background-color: #99c2ff;
  }
  .next-page {
    text-align: right;
    margin-top: 40px;
  }
  
  .next-page a {
    background-color: #cce0ff;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s;
  }
  
  .next-page a:hover {
    background-color: #99c2ff;
  }
  