main{
    overflow-y: scroll;
}

.bigcontainer{ /* main body child, holds all others*/
    display: flex;
    flex-direction: column;
    align-self: center;
    flex: 1 1 auto;
    background-color: rgba(255, 255, 255, 0.25);
    width: 90%;
    border-radius: 5px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.5), 0 5px 15px 0 rgba(0, 0, 0, 0.5);
}

.sectioncontainer{
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    background-color: rgba(255, 255, 255, 0.85);
    margin: 20px;
    width: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.5), 0 5px 15px 0 rgba(0, 0, 0, 0.5);
    padding: 5px;
}

.sectionsummary-subtitle {
    
   
    
}

.sectionsummary-subtitle p1 {

}


.sectionsummary {
    display: flex;
    flex-direction: column;
}



.emptyspacer{
    display: flex;
    height: 200px;
}

#hero p1, #hero p2, #hero p{
    align-self: center;
}

#hero p1{
   
    margin: 10px;
}

p1 {
    margin: 10px;
    font-family: "Funnel Sans", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 30px;
    font-weight: bold;
}

p2 {
    margin: 10px;
    font-family: "Funnel Sans", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 25px;
}

p {
    margin: 10px;
    font-family: "Funnel Sans", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;
}
.imagecontainer {
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25), 0 5px 15px 0 rgba(0, 0, 0, 0.25);
    margin: 10px;
   
}

.imagecontainer img {
    max-height: 500px;
    margin: 5px;
}

.leftyrighty {
    display: flex;
}

.lefty {
    display: flex;
    max-width: 1000px;
}

.righty {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    text-align: end;
}

.bento {
    display: flex;
    flex-direction: row;
    justify-content: space-around;

}
#gallerybento {
    flex-wrap: wrap;
}

#gallerybento .bentoitem {
    display: flex;
    
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25), 0 5px 15px 0 rgba(0, 0, 0, 0.25);
    margin: 10px;
    max-width: 500px;
}

#gallerybento .bentoitem p2 {
    
}

#gallerybento .bentoitem .bentoimg img{
    max-height: 500px;
    margin: 5px;
}

#gallerybento .bentoitem .bentoiframe{
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25), 0 5px 15px 0 rgba(0, 0, 0, 0.25);
    margin: 10px;
}

#gallerybento .bentoitem .bentoiframe iframe{
    width: 90%;
    height: 500px;
    margin: 5px;

}

.bentoitem {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25), 0 5px 15px 0 rgba(0, 0, 0, 0.25);
    margin: 10px;
    padding: 5px;
    

}
.bentoitemtext{
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25), 0 5px 15px 0 rgba(0, 0, 0, 0.25);
    margin: 10px;
    padding: 5px;
    border-radius: 5px;
}

.bentoitem img {
    max-width: 100%;
    margin: auto;
    padding: 5px;
}

.bentoitem p2 {
    align-self: flex-start;
}

.bentoitem p {
    align-self: flex-start;
    
    padding-right: 15px;
}

.bentoimg {
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.25), 0 5px 15px 0 rgba(0, 0, 0, 0.25);
    margin: 10px;
}

li {
    font-family: "Funnel Sans", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 15px;
}


@media (max-width:900px)  { /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */ 
    .imagecontainer {
        /* justify-content: flex-start; */
    }
    .leftyrighty {
        flex-direction: column;
    }
    .bento {
        display: flex;
        flex-direction: column;
    }
}

@media (min-width:901px)  { /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */ 
    .imagecontainer {
        justify-content: center;
    }
    .leftyrighty {
        flex-direction: row;
    }
    .bento {
        display: flex;
        flex-direction: row;
    }
}