body{
    display:flex;
    box-sizing: border-box;

    padding:3em;
    /* width: 100vw;
    min-width:60vmin; */
} 
#fauxbody{
	justify-content: space-around;
    flex-direction: column;
    gap:3%;
}
header, footer{
    padding:1em;
    background: white;
    color: var(--bridgekleed);
    border-radius: var(--border-radius);
    width:100%;
}
section>header{
    border-radius: 0;
    background-color: inherit;
}
main {
    display: flex;
    flex: 1;
    flex-direction:row;
    justify-content: space-between;
    gap:1em;
    width:100%;
    color: #000; 
}
img{
    height:2em;
    width:2em;

}
.flex{
    display: flex;
    flex-direction: column;
    align-content:start;
    justify-content: start;
}
.new{
    padding:0;
    margin:0;
}
section{
    min-width:200px;
    min-height:60vmin;
    width: 32%;
    height:80%;
    padding:2em;
    background-color: var(--background-hand);
    border-radius: var(--border-radius);
}
section>button{
    width:max-content;
}

h2{
    text-align:center; 
    color:var(--vul); 
    font-size:2rem;

}
h3{
    color:var(--bridgekleed);
    text-align:center; 
    /* font-size:1.4rem; */
    padding-top:1em;
    padding-bottom:0.5em;
}
h4{
    color:var(--NESW);
    text-align:center; 
}
p{
    color:black;
    text-align: center;}
