@import url("https://fonts.googleapis.com/css?family=DM+Serif+Text|Oxygen+Mono&display=swap");
:root {
  --primary-color: #eee;
  --primary-background-color: lightsalmon;
  --secondary-color: #ccc;
  --primary-text-color: #444;
  --secondary-text-color: #2E644A;
}

p, button {
  font-family: 'Oxygen Mono', monospace;
  font-size: 1em;
  color: var(--primary-text-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Text', serif;
}

h1 {
  color: var(--secondary-text-color);
}

body {
  background-color: var(--primary-background-color);
}

@media screen and (min-width: 800px) {
  body {
    max-width: 1100px;
    margin: 0 auto;
  }
}

button {
  -webkit-appearance: none;
}

.accordion {
  background-color: var(--primary-color);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 1.2em;
  margin-top: 2px;
}

.active,
.accordion:hover {
  background-color: var(--primary-color);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.panel {
  padding: 0 18px;
  background-color: white;
  visibility: hidden;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.2s ease-in-out;
  transition: max-height 0.2s ease-in-out;
}

.accordion:after {
  content: "\02795";
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796";
}
/*# sourceMappingURL=style.css.map */