html, body {
  min-height: 100vh;
}

body {
  background-color: #76BA1BBB;
  background-image: url(https://somethinghappened.neocities.org/plants/skipperirnwed.jpg);
  background-repeat: no-repeat;
  background-size: 1200px auto; 
  background-position: 500px 150px;
  background-attachment: scroll;

  font-family: "Garamond", "Times New Roman", "Georgia", serif;
  color: #000000;
  font-size: 18px;
}

/* Scrollbox */
.scrollbox {
  background-color: #95CADBAA;
  border: 2px solid #601A3E;
  border-radius: 10px;
  padding: 5px;
  width: 65%;
  height: 400px;
  overflow-y: auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);

  position: absolute;
  top: 20px;
  left: 40px;
}

.page-wrapper {
  position: relative;
  display: flex;
  justify-content: center; 
  padding: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
}

.flex-container {
  display: flex;
  gap: 20px;
}

/* Image column */
.left-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-image {
  max-width: 350px;
  border-radius: 10px;
}

/* Text column */
.right-container {
  flex: 1;
  padding: 10px;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.box {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  background: none;
  overflow: hidden;
}

.leaf-flourish {
  position: relative;
  top: 39px;
  left: 1040px;
  width: 500px;
  height: auto;
  z-index: 2;
}

.leaf-flourish img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

footer {
  position: absolute;
  left: 0;
  background-color: #95CADBAA;
  text-align: left;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;  
}

