:root {
    --color-text: #333;
    --color-primary: #3f72af;
    --color-bg: #f4f4f4;
    --color-icon: #002858;

    --space-0: 0;
    --space-px: 1px;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
}

*,
::before,
::after {
    box-sizing: border-box; /* 1 */
    border-width: 0; /* 2 */
    border-style: solid; /* 2 */
    border-color: currentColor; /* 2 */
}

svg,
h1,
p,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family:
            system-ui,
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            Roboto,
            Oxygen,
            Ubuntu,
            Cantarell,
            "Open Sans",
            "Helvetica Neue",
            sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
}

.wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: var(--space-4);
    text-align: center;
    padding: var(--space-2);
}

p {
    line-height: 1.5;
}

h1 {
    line-height: 1.5;
}

.store-link {
    height:  40px;
    display: inline-block;
}

.links-container {
    display: flex;
    flex-direction: row;
    gap: var(--space-8);
    justify-content: center;
    margin-top:  var(--space-8);
}