#topSectionOuterWrapper {
    box-shadow: 0 0 10px black;
    min-height: calc(100vh - 72px - 120px);
    display: grid;
    justify-content: center;
    justify-items: center;
    text-align: center;
    align-content: center;
    padding: 40px;
    margin-bottom: 10px;
}

#topSectionInnerWrapper,
#bottomSectionInnerWrapper {
    padding: 0;
    display: grid;
    justify-content: center;
    justify-items: center;
}

#topSectionMainTitle {
    font-size: 2.5rem;
    margin: 0;
}

#topSectionSubTitle {
    font-size: 1.3rem;
    margin: 10px 0 40px 0;
    max-width: 600px;
    line-height: 2;
}

.ctaButton {
    display: block;
    width: min-content;
    border-radius: 4px;
    background: white;
    border: solid 1px var(--principal-green);
    color: var(--principal-green);
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0 20px;
    text-align: center;
    padding: 10px 20px;
    white-space: nowrap;
}

.ctaButton:hover,
.ctaButton:active,
.ctaButton:focus {
    background: var(--principal-green);
    color: white;
    font-size: 1.1rem;
    border: solid 1px var(--principal-green);
}

#topSectionCtaButton {
    background: var(--principal-green);
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: none;
    border: solid 1px var(--principal-green);
}

#avatarCtaButton {
    background: var(--principal-green);
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: none;
    margin-top: 60px;
    padding: 10px 60px;
    margin-bottom: 100px;
    border: solid 1px var(--principal-green);
}

#topSectionCtaButton:hover,
#topSectionCtaButton:active,
#topSectionCtaButton:focus,
#avatarCtaButton:hover,
#avatarCtaButton:active,
#avatarCtaButton:focus {
    background: white;
    color: var(--principal-green);
}

#bottomSectionMainTitle {
    font-size: 2rem;
    margin: 0;
    margin-top: 40px;
    text-align: center;
}

#avatarContainerOuterWrapper {
    display: grid;
    justify-content: center;
    justify-items: center;
    margin-top: 20px;
    padding: 20px;
    border-radius: 4px;
}

#avatarContainerPre,
#avatarContainerPost {
    width: min-content;
    margin: 0 10px;
}

#avatarContainerPre {
    border-top: solid 1px #e7e7e7;
    border-left: solid 1px #e7e7e7;
}

#avatarContainerPost {
    border-top: solid 1px transparent;
    border-left: solid 1px transparent;
}

#avatarContainerPre .avatarCell,
#avatarContainerPost .populatedAvatarCell {
    border-bottom: solid 1px #e7e7e7;
    border-right: solid 1px #e7e7e7;
}

#avatarContainerPost .populatedAvatarCell {
    border: none;
    padding-right: 1px;
    padding-bottom: 1px;
}

.avatarRow {
    display: flex;
}

.avatarCell {
    width: 12px;
    height: 4px;
    width: 3px;
    height: 3px;
    width: 6px;
    height: 5px;
    border-bottom: solid 1px transparent;
    border-right: solid 1px transparent;
}

#avatarText {
    font-size: 1.1rem;
    margin: 10px 0 0 0;
    max-width: 400px;
    line-height: 1.5;
    text-align: center;
}

#bottomSection  {
    min-height: calc(100vh - 72px - 80px);
    display: grid;
    justify-content: center;
    justify-items: center;
    background: #f9fafb;
    padding: 40px;
    align-content: start;
    align-items: start;
}

.featureCard {
    margin-top: 40px;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px #dfdfdf;
    border-radius: 4px;
}

.featureCardText {
    font-size: 1.1rem;
    margin: 0;
    max-width: 400px;
    line-height: 1.5;
}

#featuresOuterWrapper {
    display: grid;
    grid-template-columns: auto auto;
    margin-top: 40px;
    column-gap: 40px;
}

@media screen and (max-width: 630px) {
    #featuresOuterWrapper {
        grid-template-columns: auto;
    }
}

@media screen and (max-width: 375px) {
    #bottomSection {
        padding: 40px 20px;
    }
}

@media screen and (max-width: 335px) {
    .ctaButton,
    .ctaButton:hover,
    .ctaButton:active,
    .ctaButton:focus {
        font-size: 1rem;
        padding: 10px 10px;
    }
}