.stadium {
    display:flex;
    position: static;
    z-index: auto; /* bottom */
    background-color: transparent;
}

.gridiron {
    display: grid;
    position: static;
    z-index: 1;
    background-color: dodgerblue;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    column-gap: 5px;
    row-gap: 5px;
    color: lemonchiffon;
    border-radius: 8px;
    width: 100%;
    padding: 0.75em;
}


.figbox {
    background-color: green;
    max-width: 250px;
    max-height: 250px;
    width: auto;
    height: auto;
    border-radius:25px;
    position: static;
    z-index: 2;
    padding: .2em;
    margin: .2em;
    display: inherit;
}

.figbox > .figuretitle {
    text-align: center;
    color: yellow;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    font-size: .5em;
}

.figuretitle {
    text-align: center;
    color: orange;
}


.figbox > .figure_subtitle {
    text-align: center;
    color: yellow;
    font-size: .5em;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
}
    

figure {
    background-color: transparent;
    /* color: yellow; */
    padding: 3px;
    font-size: 150%;
    border-radius: 25px;
    margin-top: 25px;
    border: thin;
    display: inherit;
    text-align: center;
    aspect-ratio: 1;
}

.figbox > figure {
    background-color: transparent;
    color: yellow; 
    padding: 3px;
    border-radius: 25px;
    margin-top: .2em;
    margin-bottom: auto;
    margin-right: auto;
    margin-left: auto;
    border: thin;
    text-align: center;
    display: inherit;
    width: 80%;
    height: 80%;
    aspect-ratio: 1;
    font-size: 0em;
}
    

.figbox figcaption {
    color: inherit;
    font-size: inherit;
}


.centered {
    margin-left: auto;
    margin-right: auto;
 

img {
    border-radius: 25px;
    max-width: 150px;
    max-height: 150px;
    width: 80%;
    height: 80%;
    margin: auto;
}



.misc_box {
    background-color: #444;
    color: #fff;
    border-radius: 25px;
    padding: 20px;
    font-size: 150%;
}

@media screen and (max-width: 830px) {

        .expander h3 { font-size: 32px; }
        .expander p { font-size: 13px; }
        .expander a { font-size: 12px; }

}


@media screen and (max-width: 650px) {

        .fullimg { display: none; }
        .details { float: none; width: 100%; }
