/* from https://www.w3schools.com/howto/howto_css_images_side_by_side.asp */

/* Three image containers (use 25% for four, and 50% for two, etc) */
.column {
  float: left;
  width: 30%;
  padding: 5px;
}

/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
}

.sideimg {
  float: right;
}