body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
}

/* Container for both halves */
.page-wrap {
  display: flex;
  flex-direction: row;
  height: 100vh;
}

/* Left photo panel */
.splash-screen {
  flex: 1;
  background: url("../images/christmas/xmas_2024_small.jpg") no-repeat center center/cover;
}

/* Right beige panel */
.remaining-space {
  flex: 1;
  background-color: #f5edc7;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.content h1, 
.content h2, 
.content h3 {
  margin: 0.3em 0;
}

/* Last updated stays fixed */
.last-updated {
  position: fixed;
  bottom: 10px;
  right: 10px;
  color: #000;
  font-size: 12px;
}

/* Make mobile stack vertically */
@media (max-width: 800px) {
  .page-wrap {
    flex-direction: column;
  }

  .splash-screen {
    height: 60vh;     /* photo shrinks for phones */
    width: 100%;
  }

  .remaining-space {
    height: auto;
    padding: 40px 20px;
  }
}
