body, header {
  transition: background 1.5s, color 1.5s;
}

body, header, .night body, .night header {
  background: #333;
  color: #EEE;
}

.day body, .day header {
  background: #DDD;
  color: #222;
}

@media (prefers-color-scheme: light) {
  body, header {
    background: #DDD;
    color: #222;
  }
}
#dayNightSwitcher {
  display: none;
  position: fixed;
  bottom: 1em;
  right: 1em;
}

.jsEnabled #dayNightSwitcher {
  display: revert;
}

body {
  font-size: x-large;
  font-family: Verdana, Arial;
  margin: 0;
}

p {
  margin: 1em;
}

figure {
  margin: 0;
  text-align: center;
}

figure img {
  width: 100%;
}

figcaption {
  font-style: italic;
  margin: 0.5em 1em 1em;
}

figure img {
  transition: width 0.5s;
}

blockquote {
  font-size: xx-large;
  font-weight: bold;
}

@media (min-width: 801px) {
  main {
    width: 800px;
    margin: 1em auto;
  }
  figure.shape-landscape img {
    width: 800px;
  }
}
@media (min-width: 601px) {
  figure img {
    display: block;
    margin: 0 auto;
  }
  figure.shape-square img {
    width: 500px;
  }
}

/*# sourceMappingURL=style.css.map */
