html, body {
  margin: 0;
  width: 100%;
  height: 100%;
}

/* BACKGROUND */
.about-page {
  min-height: 100vh;

  background-image: url("xp.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

/* LIGHT BLUE CONTAINER */
.about-container {
  width: 75%;
  height: 75%;

  background: #cfefff;
  border-radius: 30px;
  padding: 30px;
  box-sizing: border-box;

  z-index: 2;
}

/* GRID */
.about-grid {
  width: 100%;
  height: 100%;

  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

/* WHITE BOXES */
.box {
  background: white;
  border-radius: 20px;
}

/* BOX POSITIONS */
.box-top-left {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.box-top-right {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.box-bottom-left {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.bottom-right-stack {
  grid-column: 2 / 3;
  grid-row: 2 / 3;

  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

/* FISH */
.fish {
  position: absolute;

  right: 3%;          /* on the RIGHT */
  top: 55%;
  transform: translateY(-50%);

  width: 350px;       /* medium size */
  height: auto;

  z-index: 3;
}

.misa {
  position: absolute;

  left: 0.2%;
  bottom: 12%;

  width: 360px;
  height: auto;

  z-index: 4;
}

.cecillia {
  position: absolute;

  left: 4%;
  top: 4%;

  width: 360px;
  height: auto;

  z-index: 4;
}
