html, body{
    height: 100%; /*set height because wrapper needs height to be set at 100% to set min-height at 100vh*/
    margin: 0; /*websites automatically has 5 or so margin*/
    background-color: var(--main-BG-color);
    color: var(--text-color);
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 17px;
}

#wrapper{
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

main{
    margin-left: 10px;
}

footer{
    padding: 60px 35px;
    /*height: 140px;*/

    background-color: var(--footer-BG-color);
}

.center-text{
    text-align: center;
}
.center-img{
    display: block;
    margin-left: auto;
    margin-right: auto;
}
#logo{
    margin-bottom: 30px;
    width: 25em;
}