/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #edbbb9;
  color: black;
  font-family: Verdana;
  padding: 20px;
  text-align: center;
}

/* code to contain the 2 columns of images*/

.pic-container {
  display: flex;
  gap: 10px;
}

.pic {
  flex: 1;
  padding: 5px;
}

.pic img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* code to contain the two column header*/

.row {
  display: flex;
}

.column {
  flex: 50px;
  padding: 10px;
  box-sizing: border-box;
}