#page>.container{
  display: flex;
}

/* SIDE CONTAINER */
#side {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  width: 240px;
  flex-shrink: 0;
  margin-right: 40px;
}

/* SIDE CONTENT */
#side #side-content {
  text-align: center;
  border-top: 3px solid rgba(0, 0, 0, 0.4);
  border-right: 3px solid rgba(0, 0, 0, 0.4);
  padding: 20px 20px 20px 0;
}
#side #side-box h3 {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

#side #side-content img {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 800px) {
  #page>.container {
    flex-direction: column-reverse;
  }

  #content {
    margin-left: 0;
    width: 100%;
  }

  #side {
    width: 100%;
    margin-right: 0;
    margin-top: 40px;
    flex-direction: column-reverse;
  }

  #side #side-content {
    border-right: none !important;
    padding: 20px !important;
  }
}
