:root {
    --base-font-size: 20px;
    --background: white;
    --c-text: #242424e3;
    --c-highlight: #06e196;
}

@media (min-width: 600px) {
    :root {
        --base-font-size: 31px;
    }
}

html {
    box-sizing: border-box;
    font-size: var(--base-font-size);
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    background-color: var(--background);
    display: flex;
    min-height: 100vh;
    line-height: 1.8333;
    font-weight: 300;
    flex-direction: column;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

@media (min-width: 769px) {
    * {
        cursor: none !important;
    }
}

main {
    flex: 1;
}

strong {
    font-weight: 600;
}

a,
span {
    color: inherit;
    font-family: inherit;
    text-decoration-style: wavy;
    text-decoration-color: var(--c-highlight);
    text-decoration-skip-ink: none;
}

p {
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: -0.003em;
    word-break: break-word;
    color: var(--c-text);
}

.container {
    max-width: 1142px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
}

@media (min-width: 600px) {
    .container {
        padding-left: 42px;
        padding-right: 42px;
    }
}

.intro-text {
    margin-top: 24px;
}

@media (min-width: 600px) {
    .intro-text {
        margin-top: 24vh;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}