/**
 * Custom CSS
 */
html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
    font-family: sans-serif;
    color: #7D9ABB;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

body, html {
    height: 100%;
}

main {
    text-align: center;
}

h1 {
    color: #f35626;
    font-family: 'K2D', sans-serif;
    font-size: 60px;
    line-height: 1;
    margin: 0 0 1rem;
    background-image: -webkit-linear-gradient(92deg, #f35626, #feab3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: hue 10s infinite linear;
}

p {
    margin: 0;
    padding: 0;
    font-style: italic;
}

@-webkit-keyframes hue {
    from {
        -webkit-filter: hue-rotate(0deg);
    }

    to {
        -webkit-filter: hue-rotate(-360deg);
    }
}
