:root {
    --color-background: #000000;
    --color-surface: #FFFFFF;
    --color-primary: #9C42FF;
    --color-text: #000000;
    --color-text-muted: #6E6E6E;
}

html,
body {
    width: 100vw;
    height: 100dvh;
    margin: 0;
    padding: 0;
    position: fixed;
    overflow: hidden;
}

body {
    font-family: Poppins;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    box-sizing: border-box;
    background:
        url(/resources/images/icon.svg) -13px 3% / 100px 100px no-repeat,
        url(/resources/images/icon.svg) calc(100% - 5%) 15% / 70px 70px no-repeat,
        url(/resources/images/icon.svg) 15% 78% / 80px 80px no-repeat,
        url(/resources/images/icon.svg) calc(100% + 11px) calc(100% - 7%) / 100px 100px no-repeat;
    background-color: var(--color-background);
}

/* global */

main,
section,
div,
a {
    box-sizing: border-box;
}

a.btn {
    background: var(--color-primary);
    display: flex;
    padding: 7px 32px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    color: #FFF;
    font-size: 1rem;
    font-weight: 700;
    line-height: 150%;
    text-decoration: none;

    &:hover {
        text-decoration: underline;
    }
}

/* layout */

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
}

/* card */

section.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--color-surface);
    padding: 1.5rem;
    max-width: 400px;

    img.logo {
        width: 130px;
        margin-bottom: 1rem;
    }

    h1 {
        color: var(--color-text);
        text-align: center;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        padding: 0;
        margin: 0;
    }

    p {
        color: var(--color-text-muted);
        text-align: center;
        font-weight: 400;
        margin-top: .8rem;
        margin-bottom: 1.5rem;
    }

}