* {
    overflow-x: hidden;
    margin: 0;
}

body {
    /* background-color:#202124; */
    background-color: white;
}


.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6em;
}

.sub-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em;
}

.sub-title p {
    padding-bottom: .5em;
}

.title p,
.title h1,
.title a {
    font-size: 1em;
    /* color:white; */
    color:black;
}

/* .box {
    background-color: white;
    border: solid;
    border-radius: 10px;
    border-color: white;
    padding: 1em;
} */
.grid-container {
    display: flex;
    align-items: flex-start;
    justify-content: center; 
}
.grid-container p{
    padding-top:.25em;
    padding-right:.2em;
}
.toggleLegendButton {
    background-color: transparent;
    border: none;
    /* color:white; */
    color: #202124;
    font-size: 1.5em;
    cursor: pointer;
    display: block;
  }

.text{
    font-size: 75%;
    margin: auto;
    overflow-y: hidden;

}
#ages{
    /* color:white; */

    width: 20vw;
    height: auto;
    overflow-y: hidden;
    display: inline-grid;
    justify-content: space-around;
    font-size: 2em;
}

#portrait,
#wrapper,
.img-search,
.img1{
    width: 20vw;
    height: auto;
    overflow-y: hidden;
}
.sean-grid {  
    margin:0.25em;
    display: grid;
    grid-gap: 1em;
    grid-template-areas: 
    's1 s2 s3';
    overflow-y: hidden;
    place-content: center;
    max-height: fit-content;
    transition: max-height 0.1s ease, padding 0.1s ease;
}
.sean-grid.collapsed {
    max-height: 0;
  }

::-webkit-scrollbar {
    width: 5px;
    background: transparent;
}
::-webkit-scrollbar-track {
  background-color: #fafafa;
}
::-webkit-scrollbar-thumb {
  background: #202124;
  border-radius: 10px;
}

.returnButtonContainer {
    margin-top: auto;
    padding-left: 1em;
    overflow: hidden;
    position:fixed;
    bottom:1.5em;
    left:1em;
}
#returnButton{
    color:#202124;
}