* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-bg-color: #0019F4;
    --main-fg-color: #ffffff;
}



html,
body {
    min-height: 100%;
    font-size: 4vw;
    line-height: 1.4em;
    padding:2rem 0 4rem 0;
}

@media only screen and (min-width: 768px) {
    html,
    body {
        font-size: 3vw;
        line-height: 1.4em;
    }
}

* {font-size: 1.05em;line-height: 1.4em;font-weight:normal;}

body {
    background: #0019F4;
    color: #ffffff;
    font-family: 'Anton', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 1rem;
    letter-spacing: .05rem;
}

.wrapper {
    margin:0 auto;
    max-width: 720px;
    width: 100%;
    text-transform: uppercase;
    display:flex;
    flex-direction: column;
}

.wrapper .claim {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 0 auto 1.5rem;
}

.wrapper .claim svg {
    width: 80vw;
    height: 80vw;
    max-width: 100%;
}

.button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: var(--main-fg-color);
    color: var(--main-bg-color);
    text-decoration: none;
    border-radius: 1.5rem;
}



