@import url("https://fonts.googleapis.com/css?family=Pacifico|Roboto");
body {
  background: lightcoral;
  font-family: "Roboto", "sans-serif";
  padding: 50px; }

h1 {
  color: white;
  font-family: "Pacifico", cursive;
  font-size: 4em; }

.Accordion-title {
  background-color: lightgrey;
  color: black;
  cursor: pointer;
  padding: 18px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s; }
  .Accordion-title.is-active, .Accordion-title:hover {
    background-color: darkgray; }

.Accordion-panel {
  padding: 0 18px;
  background-color: white;
  overflow: hidden;
  max-height: 0; }
  .Accordion-panel.is-active {
    transition: max-height 0.5s ease-in;
    max-height: 500px; }
