:root {
    --pine-green: #01796F;
}

header {
  padding: 10px;
  text-align: center;
}

div.flex-container {
  display: flex;
  /* Show the flex items horizontally */
  flex-direction: row;
}

div.flex-container > div {
  margin: 10px;
}

div.main-content {
    display: none;
}

/* Use media query and show the flex items vertically if screen width is less than 600px */
@media screen and (max-width:600px) {
  div.flex-container {
    flex-direction: column;
  }
}

.box {
  position: relative;
  height: fit-content;
}

.box > div {
    padding-top: 9px
}

.box-title {
  position: absolute;
  top: -25px;
  left: 15px;
  font-size: 16px;
}