:root {
  --text-color: #f9282e;
  --theme-color: #f9282e;
  --theme-second-color: #f9282e;
}

html,
body {
  margin: 0;
  border: 0;
  color: var(--text-color);
}

header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding: .5em;
  border-bottom: 1px var(--theme-color) solid;
}

header a {
  display: inline-block;
  margin: 0 1em;
  color: var(--text-color)
}
a:link {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


img {
  min-width: 9em;
  max-width: 100%;
  height: auto;
}

section {
  padding-bottom: 2.5em;
  border-bottom: 1px #f9282e solid;
}

.grid-1-2 {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 3fr;
}

.text-wrap {
  padding: .5em;
  /* width: 10em; */
}

.img-wrap {
  padding: .5em;
}

@media screen and (max-width: 768px) {
  .grid-1-2 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .img-wrap:nth-child(odd) {
    clear: both;
  }
}