/* Reset begin */
html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
section {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
}

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

button {
  border: none;
  cursor: pointer;
}

/* Reset end */
a,
a:visited {
  color: inherit;
}

h2 {
  margin: 4rem 0 2rem 0;
}

body > .container {
  transition: opacity 1.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem;
  counter-reset: footnotes;
  hyphens: auto;
}
body > .container > .content {
  max-width: 70ch;
}
body > .container > .content > div, body > .container > .content > p {
  line-height: 1.5;
}
body > .container > .content > div:not(:first-child), body > .container > .content > p:not(:first-child) {
  margin-top: 1.5rem;
}
body > .container > .content > footer {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 0.0625rem solid silver;
}
body > .container > .content > footer > .visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  visibility: hidden;
  opacity: 0;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.lightbox.show {
  opacity: 1;
}
.lightbox > img {
  max-width: 80%;
  max-height: 80%;
}

.expander {
  text-decoration: underline;
  cursor: pointer;
}

.expandable {
  display: none;
  background: khaki;
  transition: all 1s;
}
.expandable.expanding {
  padding: 0 12px;
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
}
.expandable.expand {
  padding: 12px;
  margin: 12px 0;
  display: block;
  max-height: 200px;
}

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