*, *:before, *:after { box-sizing: border-box; }

:root {
    --color-1: #000;
    --color-2: #e6e6e6;
    --color-3: #000;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    padding: 0;
    margin: 0;
    color: var(--color-1);
    background-color: var(--color-2);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; 
    -webkit-text-size-adjust: none;
    overflow-x: hidden;
}
a {
    color: var(--color-1);
}
header a#hand {
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/images/hand.svg');
}
header a#submit {
    max-width: 110px;
    border: 1px dashed #fff;
    font-size: 12px;
    padding: 5px;
    position: absolute;
    display: inline;
    right: 15px;
    top: 25px;
    rotate: -10deg;
    /* border-radius: 8px; */
    text-decoration: none;
    line-height: 1.3em;
    color: var(--color-2);
    background-color: blue;
    text-align: left;
}
header a#submit:hover {
    border: 1px solid blue;
    border-radius: 8px;
}
footer {
    border-top: 2px dashed rgba(0, 0, 0, 0.089);
    padding: 20px 0;
    margin-top: 80px;
}
a#back {
    font-size: 14px;
    margin-left: 10px;
    text-decoration: none;
}
a#back:hover {
    text-decoration: underline;
}

#hands {
    overflow: hidden;
}
.hand {
    position: fixed;
    z-index: -1;
    background-image: url('/images/hand-filled.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 90px;
    height: 90px;
    opacity: .9;
}


@media(max-width: 800px) {
    header a#submit {
        font-size: 10px;
        max-width: 100px;
    }
    .hand {
        opacity: .1;
    }
}