#wrapper {
    display: grid;
    grid-template-columns: 10% 80% 10%;
    height: 150%;
}
body {
    background-image: url(pq4103.gif);
}
#main_content {
    background-color: whitesmoke;
    height: 100vh;
    border: 2.5px solid brown;
    border-radius: 25px;
    display: grid;
    grid-template-rows: 1fr .5fr 2fr auto ;
}
#title-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}
#results {
    background-image: url(https://quaker.sfo3.cdn.digitaloceanspaces.com/quaker/public/hero.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 0px 0px 22px 22px;
    aspect-ratio: 1 / 1;
}
#get-notified-btn {
    height: 50%;
}
#search-row {
    display: grid;
    grid-template-columns: .5fr 6fr .5fr 1fr .25fr .5fr .5fr;
}
#feature-stats-display {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.feature-data-div {
    text-align: center;
}
.data-header {
    font-size: larger;
}
#footer {
    text-align: center;
    color: lime;
}