body {
  background-color: #E1F16B;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

/* ----- TEXT STYLING ----- */
h1 {
  font-family: "Josefin Sans";
}

.one, .two, .three, .four {
  background-color: rgba(217, 217, 217, 0.5);
}

/* .leftColumn > .one > h1 {
    margin-top: 10px;
    margin-right: 10px;
    text-align: right;
} */

.rightColumn > .four > h1 {   /* 'about' */
    margin-top: 10px;
    margin-left: 10px;
    text-align: left;
}

.leftColumn > .three {   /* 'recent picks' */
    position: relative;
}
.leftColumn > .three > h1 {
    position: absolute;
    bottom: -10px;
    left: 10px;
}

/* ----- SITE LAYOUT ----- */
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto 1fr;
  gap: 5px;
  justify-content: center;
}

.container > h1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  text-align: left;
  margin-bottom: 10px;
  margin-top: 0;
}

.leftColumn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.one {
  display: flex;
  flex-direction: column;
  width: 710px;
  height: 345px;
  position: relative;
  overflow: hidden;
}

.three {
  width: 710px;
  height: 345px;
}

.rightColumn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.two {
  width: 275px;
  height: 210px;
  border-style: solid;
  border-color: #2d2d2d;
  border-width: 10px 10px 30px 10px; /* top right bottom left */
  border-top-left-radius: 10px;
  border-top-right-radius: 10px; 
  background: url('image.png') center center / cover no-repeat;
  box-sizing: border-box; /* keeps the box in-column */
}

.four {
  width: 275px;
  height: 480px;
}

/* ----- GUESTBOOK LAYOUT ----- */
.guestbook-flex {
  display: flex;
  height: 100%;
}

.guestbook-flex,
.guestbook-flex * {
  font-family: 'Josefin Sans', sans-serif;
}

.guestbook-form-col {
  flex: 0 0 220px; /* fixed width for form */
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.guestbook-posts-col {
  flex: 1 1 0;
  padding: 10px;
  box-sizing: border-box;
  overflow-y: auto;
  height: 100%;
}

#posts-list-container {
  position: absolute;
  top: 150px; /* height of post-drafting UI */
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  padding: 0 10px 10px 10px;
}
