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

html {
    line-height: 1.15;
    text-size-adjust: 100%;
    color: #313131
}

button,
html {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

a {
    background-color: transparent;
    color: #0051c3;
    text-decoration: none;
    transition: color .15s ease
}

a:hover {
    color: #ee730a;
    text-decoration: underline
}

.main-content {
    margin: 8rem auto;
    max-width: 60rem;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

@media (width <=720px) {
    .main-content {
        margin-top: 4rem
    }
}

.main-wrapper {
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column
}

.spacer {
    margin: 2rem 0
}

.main-msg {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2.25rem;
    overflow-wrap: break-word;
}

@media (width <=720px) {
    .main-msg {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

@media (prefers-color-scheme:dark) {
    body {
        background-color: #222;
        color: #d9d9d9
    }

    a {
        color: #fff
    }

    a:hover {
        color: #ee730a;
        text-decoration: underline
    }

    .main-svg-text {
        fill: #d9d9d9;
    }
}
