#modalDiv {
    display: none;
    color: white;
    width: 80%;
    height: 80%;
    position: fixed;
    top: calc(2% + 50px);
    left: 9.5%;
    padding: 10px 0.5% 10px 0.5%;
    background-color: rgba(19, 53, 165, 0.5);
    z-index: 200;
    overflow: scroll;
    overflow-x: hidden;
}

#modalBackground {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    left: 0%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 199;
}

#closeModalButton {
    position: absolute;
    right: 1%;
    top: 1%;
    font-size: 30pt;
}
#closeModalButton:hover,
#closeModalButton:focus {
  color: rgb(204, 170, 20);
  text-decoration: none;
  cursor: pointer;
}

#modalTitleText-div {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

#modalTitleText {
    font-size: 30pt;
}

#sectionContainer {
    margin-bottom: 20px;
}

.sectionButtonDiv {
    margin-bottom: 10px;
}

.sectionButton {
    /* display: block; */
    text-align: left;
    width: 100%;
    font-size: 30;
}

.activeSectionButton {
    background-color:rgb(165, 165, 165)
}

.sectionTextDiv {
    /* display: none; */
    max-height: 0;
    transition: max-height 0.2s ease-out;
    overflow: hidden;
}

.sectionTextDiv > .sectionHeader > #helpText {
    font-size: 24;
}

.sectionTextDiv > .imageDiv {
    text-align: center;
}

.sectionTextDiv > .imageDiv > img  {
    height: auto;
}

#helpText-div {
    margin-bottom: 10px;
}

#helpText {
    font-size: 18;
}

.imageDiv {
    margin-top: 10px;
    margin-bottom: 10px;
}