/* links change color on hover */
a:link {color:red;}
a:visited {color:blue;}
a:hover {color:orange;}



.flex-container {
  display: flex;
  flex-direction: row;
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 1000px) {
  .flex-container {
    flex-direction: column;
  }
}
