* {
    color:var(--theme-dark);
    font-family:"San Francisco", Arial, Helvetica, sans-serif;
}


body{
    background-color: var(--theme-white);
}

#main-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left:5vw;
    padding-right:5vw;
}

@media (min-width: 800px) {
    :root {
        --body-side-margin: 20vw;
    }
}

.min-container {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0.6vmin 2vmin rgba(0,0,0,0.2);
    width: 100%;
    align-items: center;
    /*max-height:70vh;
    overflow-y: scroll;*/
    overflow-x:hidden;
    overflow-wrap: anywhere;
    margin-bottom: 8vh;
}

h1 {
    font-family: "San Francisco", Arial, Helvetica, sans-serif;
    font-size: 4rem;
    text-align: center;
    margin-bottom: 10vh;
    margin-top: 5vh;
    width:100%;
}

.header-img {
    width:100%;
    height: auto;
    margin-bottom: 5vh;
}

h2 {
    width:100%;
    font-size: 3rem;
    text-align: center;
}

strong{
    width:100%;
    text-align: center;
}

strong, p {
    display: block;
    margin-bottom: 3vh;
    font-size: clamp(1.5rem, 2rem, 4vw);
    font-family: "San Francisco", Arial, Helvetica, sans-serif;
    width: 100%;
}
/*https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_collapsible_animate*/
.description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.active, .collapsible:hover {
    background-color: #888;
  }
  
.collapsible{
    background-color: #EEE;
    color: var(--theme-dark);
    cursor: pointer;
    padding: 2vmin;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 4vmin;
    margin-bottom: 5vh;
}