:root {
    --primary-color: 90 42 138;
    --text-color: 110 101 121;
    --line-color: 235 231 241;
    --background-color: 238 242 246;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 17px;
    font-weight: 500;
    color: rgb(var(--text-color));
    font-family: inter-variable, sans-serif;
}

body {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    background: linear-gradient(to bottom, transparent calc(100% - 1px), rgb(var(--background-color) / 0.75) calc(100% - 1px)), linear-gradient(to right, rgb(var(--background-color) / 0.1) calc(100% - 1px), rgb(var(--background-color) / 0.75) calc(100% - 1px));
    background-size: 45px 45px;
}

h1,
p {
    margin: 0;
}

a {
    font-weight: 600;
    text-decoration: none;
    color: rgb(var(--primary-color));
}

a:hover {
    text-decoration: underline;
}

.page {
    width: 100%;
    display: flex;
    min-height: 100dvh;
    padding: 48px 28px;
    align-items: center;
    justify-content: center;
}

.stack {
    min-width: 0;
    display: flex;
    flex-flow: column;
    text-align: center;
    align-items: center;
    width: min(640px, 100%);
}

.logo,
.logo img {
    width: 82px;
    height: 82px;
    display: block;
}

.stack h1 {
    max-width: 100%;
    font-size: 38px;
    margin-top: 24px;
    line-height: 1.18;
    overflow-wrap: anywhere;
    color: rgb(var(--primary-color));
    font-family: pally-variable, sans-serif;
}

.descriptions {
    gap: 12px;
    display: flex;
    max-width: 560px;
    margin-top: 24px;
    flex-flow: column;
}

.footer {
    width: 100%;
    max-width: 560px;
    font-size: 16px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 2px solid rgb(var(--line-color));
}

@media (max-width: 640px) {
    .page {
        padding: 36px 24px;
    }

    .logo,
    .logo img {
        width: 72px;
        height: 72px;
    }

    .stack h1 {
        font-size: 30px;
        margin-top: 40px;
    }

    .descriptions {
        margin-top: 20px;
    }
}
