:root {
  --one: peachpuff;
  --two: cornflowerblue;
  --three: cornsilk;
  --four: orange;
  --five: yellow;
  --six: lightcyan;
  --title: 30px;
  --subtitle: 25px;
  --mainsize: 18px;
}

body, html {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: var(--two);
  background-image: url("images/spring_rainy.gif");
  background-size: cover;
  font-size: var(--mainsize);
  font-family: monospace;
}

h1, h2, h3 {
  text-align: center;
  margin: 0;
}

h1 {
  display: none;
}

h2 {
  color: var(--three);
  font-size: var(--title);
}

h3 {
  color: var(--four);
  font-size: var(--subtitle);
}

img {
  max-width: 100%;
  <--
  background: var(--two);
  -->
  padding: 1rem;
}

header figure {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}


header {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}


main {
  display: grid;
  grid-template-columns: 1fr 700px 1fr;
  grid-gap: 1rem;
  margin: auto;
  padding: 1rem;
}

section.featured {
  grid-column: 2;
  font-size: 3rem;
  text-align: center;
}

section.featured div {
  background: var(--six);
  padding: 1rem;
  margin-top: 0.5rem;
  border: 1px solid;
}

figure.feat {
  margin: 0;
}

section.stuff {
  grid-column: 2;
  font-size: 2rem;
  text-align: center;
}

section.stuff div{
  background: var(--three);
  margin-top: 0.5rem;
  border: 1px solid;
}

section.stuff img {
  padding: 0rem 1rem;
}

figure.left {
  grid-column: 1;
}

figure.right {
  grid-column: 3;
}

@media (max-width: 667px) {
  main {
    display: flex;
    flex-flow: column;
  }
  h1 {
    font-size: 2rem;
    flex-wrap: wrap;
  }
  figure {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}

