body {
    margin: 0px;
    padding: 0px;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, td, li {
    font-family: "Roboto Condensed", sans-serif;
}

hr {
    border: none;
    height: 2px;
    background-color: #000000;
    width: 70%;
}

.banner {
    display: flex;
    gap: 15px;
    background-color: gold;
    position: sticky;
    top: 0px;
    margin-top: 0px;
    justify-content: center;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    background-color: gold;
    padding-top: 5px;
    width: 100%;
    bottom: 0%;
}


li {
    padding: 2px;
}

.accordion {
    cursor: pointer;
    padding: 4px;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    margin: 6px;
}

.active, .accordion:hover {
    background-color: #ccc;
}

.panel {
    max-width: 100%;
    padding-right: 10px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.list-container {
    padding-left: -5%;
    min-width: 40%;
}

@media screen and (max-width: 800px) {
  .accordion {
    font-size: 15pt;
  }
  .panel {
    font-size: 13pt;
  }
}