body {
    text-align: center;
    font-family: "AnonymousPro";
    background-color: #55a7a5;
}

/* mobile-first (stacked) */
.wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
}

.disclaimer {
    font-family: "voguemedium";
    background:  #544161; 
    color: white;
    padding: 1em;
    border: 3px solid white;
    margin: 1em auto;
    font-size: 1em;
    border-radius: 20px;
}

h1 {
    font-family: "PermanentMarker";
    color: #ffffff;
    font-size: 3em;
}

h2 {
    font-family: "PermanentMarker";
    color: #ffffff;
    font-size: 3em;   
    margin: 0.1em;
}

h4 {
    font-family: "PermanentMarker";
    font-size: 2em;
}

a:link {
        color: white;
        text-decoration: none;
        }
  
        a:visited {
            color: white;
            text-decoration: none;
        }
        a:hover {
            color: #544161; 
            text-decoration: none;
        }
  
        a:active {
            color: white;
        }
        
.topics a,
.topics div,
.topics button {
  white-space: nowrap;
  font-size: min(1.1rem, 4vw);
}

.topics {
    column-count: 2;
}

.topics_container {
    margin: 1em auto;
}

/* Genre header buttons */
.accordion {
  background-color: #000000;
  color: #ffffff;
  cursor: pointer;
  padding: 14px 20px;
  margin: 0.75rem auto 0;
  border: none;
  text-align: center;
  outline: none;
  font-size: 1.6rem;
  font-family: "PermanentMarker";
  letter-spacing: 0.05em;
  border-radius: 10px;
    width: 100%;
}

.accordion:hover {
  background-color: #544161;
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.accordion:active {
  transform: translateY(0);
  box-shadow: none;
}

.accordion.active {
  background-color: #544161;
}

/* Hidden container that holds each topic's entries.
   JS reads panel.innerHTML and puts it into the modal */
.panel {
  display: none;      /* it's fine now, we're not animating this */
}

@media (min-width: 1200px) {
 
 h1 {
     font-size: 5em;
     margin: 0.25em;
 }
 
 .topics_container {
    width: 75%;
}

.topics {
    column-count: 4;
}

.topics a,
.topics div,
.topics button {
  white-space: nowrap;
  font-size: min(2rem, 4vw);
}

  .wrapper {
flex-direction: row;
align-items: flex-start;
justify-content: center;
gap: 1rem;
  }

.disclaimer-wrapper {
    width: 50%;
  }

}