* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    height: auto;
    min-height: -webkit-fill-available;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-kerning: none;
    -webkit-text-size-adjust: 100%;
    touch-action: manipulation;
    overflow-y: auto;
}

html::-webkit-scrollbar,
html::-webkit-scrollbar-track {
    width: 0.5rem;
}

html::-webkit-scrollbar-track {
    border: solid 0.125rem transparent;
}

html::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 0.625rem 0.625rem #24241D;
    transition: all .4s;
    border: solid 0.125rem transparent;
}

html::-webkit-scrollbar-thumb:hover {
    box-shadow: inset 0 0 0.625rem 0.625rem #3D424D;
}

html::-webkit-scrollbar-corner {
    background-color: transparent;
}

.navbar {
    height: 3rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
}

.brand {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    text-decoration: none;
    color: inherit;
    padding-left: 0.25rem;
}

body,
.body {
    position: relative;
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #24241D;
    background-color: #FDFCFD;
    min-height: 100vh;
    overflow: auto;
    line-height: 1.6;
}

main,
.main {
    flex-grow: 1;
}

.hero-title {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2e2b26;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

.hero-paragraph {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #24241D;
}

a {
    text-decoration: none;
    color: currentColor;
    outline: 0;
    cursor: pointer;
}

.hero {
    min-height: calc(100vh - 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem;
}

.container {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 10rem;
}

.hero-text {
    max-width: 40rem;
    margin: 0 auto;
    /* margin-top: -30vh;  */
    text-align: left;
}

.hero-desc {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-desc p {
    margin: 0;
}

.emphasized {
    color: #2e2b26;
    font-weight: 500;
}

/* title and paragraph classes replace previous text utilities */

.spacer {
    height: .15rem;
}

@media only screen and (max-width: 991px) {
    .hero {
        padding: 0 0.9375rem;
    }

    .container {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.125rem;
    }
}

@media only screen and (max-width: 767px) {
    html {
        height: auto;
        overflow-y: auto;
    }

    body,
    .body {
        height: auto;
        min-height: 100vh;
        overflow: auto;
    }

    .hero {
        height: auto;
        align-items: flex-start;
        padding: 1rem 0.625rem 0;
        margin-top: 3rem;

    }

    .container {
        padding: 0 0.625rem;
        margin-bottom: 0;
    }

    .hero-text {
        text-align: left;
    }

    .hero-title {
        font-size: 1.25rem;
    }

    .spacer {
        height: .125rem;
    }
}