html {
    cursor: url('img/hand.png'), default;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background: url('/img/background.png');
    opacity: 0.5;
}

body {
    background: #FFCCAC;
    font-family: 'Arial', Helvetica, sans-serif;
    padding: 1em;
    display: flex;
    justify-content: center;
    z-index: 2;
    margin-bottom: 5em;
}

a {
    cursor: inherit;
}

span {
    cursor: inherit;
}

h1 {
    font-family: 'Arial Black', Helvetica, sans-serif;
    text-align: center;
    margin-top: 0.1em;
}

.headerimage {
    width: 30em;
    max-width: 80%;
    margin: 3em auto 0;
    display: flex;
    justify-content: center;
    @media only screen and (min-width: 30em) {
        margin: 0 auto;
    }
}

main {
    display: block;
    max-width: 50em;
}

.garfbox {
    width: 10em;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.separator {
    margin: 1em auto;
    width: 100%;
}

.linkbox {
    a {
        margin: 1em auto;
    }

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    @media only screen and (min-width: 50em) {
        flex-direction: row;
    }
}

a img {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.colbox {
    border-radius: 3em;
    box-shadow: -0.2em -0.2em 1em rgb(232, 226, 209), 0.2em 0.2em 1em rgb(0, 0, 0);
    background-image:
            linear-gradient(rgba(255,255,255,0.5),
            rgba(255,255,255,0.5)),
            url("/img/balls.png");
    animation: scroll-animation 5s linear infinite;
    display:flex;
    padding: 1em;
    flex-direction: column;
    @media only screen and (min-width: 50em) {
        flex-direction: row;
    }
    justify-content: center;
}

@keyframes colbox-animation {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.col {
    border-radius: 1.5em;
    margin: 0.5em auto;
    padding: 0.5em;
    background: linear-gradient(#E8E2D1, #FFCCAC);
    box-shadow: -0.2em -0.2em 1em rgb(232, 226, 209), 0.2em 0.2em 1em rgb(0, 0, 0);;
    width: 90%;
    max-width: 20em;
    display: flex;
    flex-direction: column;

    @media only screen and (min-width: 50em) {
        width: 33%;
        margin: 0.5em;
        max-width: 100%;
    }
}

.colhead {
    width: 60%;
    height: 4em;
    margin: 1em auto 0;
}

.marquee {
    bottom: 0;
    display: flex;
    grid-row: auto;
    height: 3em;
    position: fixed;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    cursor: inherit;

    img {
        height: 3em;
    }
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.macsticker {
    position: absolute;
    width: 14em;
    margin: 0 1em;
    transform: rotate(-10deg) translate(-3em, 1em);
}

.rainbow-text {
    text-shadow: -0.1em -0.1em white;
    background-image:
            linear-gradient(45deg,
                red, orange, yellow, green, blue, indigo, violet
            );
    background-size: 200%;
    animation: scroll-animation 5s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes scroll-animation {
    0% {
        background-position: 0 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}