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

body {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--page-background);
    height: 100%;
    min-height: 100vh;
    font-family: 'Scandia', sans-serif;
    color: var(--page-foreground);
    user-select: none;
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 20px;
}

@media (min-width: 325px) {
    body {
        font-size: 14px;
    }
}

@media (max-width: 325px) {
    body {
        font-size: 10px;
    }
}

h1 {
    font-size: 4.5em;
    font-weight: 700;
}

h2 {
    font-size: 2.3em;
    font-weight: 600;
}

h3 {
    font-size: 1.3em;
    font-weight: 400;
}

hr {
    border-top: 1px solid currentColor;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

a {
    color: currentColor;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    pointer-events: none;
}

.logo {
    position: sticky;
    top: 20px;
    display: block;
    width: 40px;
    height: 40px;
    transition: margin-right 0.2s ease;
}

.logo--left {
    margin-right: 85%;
}

.logo svg {
    width: 100%;
    height: 100%;
}

.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
}

.social {
    display: flex;
    width: 24px;
    height: 24px;
}
