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

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "Roboto",
        "Oxygen",
        "Ubuntu",
        "Cantarell",
        "Fira Sans",
        "Droid Sans",
        "Helvetica Neue",
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #031306;
    background: #f5f5f5;

    -webkit-tap-highlight-color: transparent;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

.page-wrapper {
    padding: 32px;
    margin: 0 auto;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

@media screen and (max-width: 1024px) {
    .page-wrapper {
        padding: 16px;
    }
}

.heading {
    font-size: 28px;
    line-height: 32px;
    font-weight: 500;
    text-align: center;
}

.sub-heading {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;

    padding-top: 16px;
}

.ordered-list {
    padding-left: 16px;
}

.ordered-list-nested {
    padding-left: 24px;
}

.unordered-list {
    padding-left: 24px;
    list-style-type: disc;
}
