html { max-width: 100%; background-color: #ffffff; font-size: 18px; margin: 0 auto; overflow-y:scroll; height:100%; }
nav {
    position: relative;
    top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Arial, Helvetica;
}
nav div a {
    margin-left: 5px;
    text-decoration: none;
}
footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    /*font-size: 14px;*/
    font-style: normal;
    margin-top: 3em;
    text-align: center;
    background-color: rgba(211, 211, 211, 0.3);
    padding-top: 0.5em;
}
body { margin: 0 auto; display:flex; flex-direction:column; height: 100%; }
#main {
    width: 100%;
    max-width: 50em;
    font-family: Georgia, serif;
    font-style: normal;
    margin: 0 auto;
    flex-grow: 1;
}
#main-text { margin-top: 2em; }
.faq { margin-top: 1.5em; font-size: 1em; }
#title {
    font-family: Georgia, serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    text-align: center;
}
#title p { font-family: sans-serif; }
#title h1 { margin-block-end: 0em; }
h3 { margin-block-start: 0em; margin-block-end: 0em; }
a { color: black; //#3498db; }
a:hover, a:active, a:visited { color: black; }
#benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex-direction: row;
}
#benefits div {
    background-color: rgba(211, 211, 211, 0.3);
    color: black;
    flex: 1 1 calc(25% - 3px);
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#benefits div p {
    margin-top: 3px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    max-width: 90%
}
#cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3em;
    margin-bottom: 2em;
}
#steps {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    line-height: 1.5em;
    margin-bottom: 0.5em;
}
#steps p { text-align: center; }
.button-80 {
    background: #fff;
    backface-visibility: hidden;
    border-radius: .375rem;
    border-style: solid;
    border-width: .125rem;
    box-sizing: border-box;
    color: #212121;
    cursor: pointer;
    display: inline-block;
    font-family: Circular,Helvetica,sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.3;
    padding: .875rem 1.125rem;
    position: relative;
    text-align: left;
    text-decoration: none;
    transform: translateZ(0) scale(1);
    transition: transform .2s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
.button-80:not(:disabled):hover { transform: scale(1.05); }
.button-80:not(:disabled):hover:active { transform: scale(1.05) translateY(.125rem); }
.button-80:focus { outline: 0 solid transparent; }
.button-80:focus:before {
    content: "";
    left: calc(-1*.375rem);
    pointer-events: none;
    position: absolute;
    top: calc(-1*.375rem);
    transition: border-radius;
    user-select: none;
}
.button-80:focus:not(:focus-visible) { outline: 0 solid transparent; }
.button-80:focus:not(:focus-visible):before { border-width: 0; }
.button-80:not(:disabled):active { transform: translateY(.125rem); }
#whatis {
    display: flex;
    flex-direction: row;
    font-weight: 400;
}
#whatis div img {
    height: 200px;
    width: 200px;
}
#whatis div p {
    margin-top: 0.5em;
}
#footer-inner {
    margin: 0 auto;
    width: 100%;
    max-width: 50em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
}
#services {
    max-width:50%;
    display: flex;
    flex-direction: column;
    text-align: left;
}
#footer-inner div { margin-top: 0.5em; }
#footer-about {
    display: flex;
    flex-direction: column;
    text-align: left;
}
#footer-courses {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.tutoring-card { }

@media (max-width: 600px) {
    #main {
        max-width: 95%;
    }
    #footer-inner { max-width: 95%; flex-direction: column; justify-content:space-between; }
    #benefits {
        flex-direction: column;
    }
    #benefits div {
        flex: 1 1 100%;
    }
    #whatis div {
        max-width:100%;
    }
}
