@import url('https://use.typekit.net/jwz0tgk.css');

* {
    margin: 0;
    padding: 0;
}

html, body {
    min-height: 100vh;
    font-family: freight-sans-pro, sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: white;
}

body {
    position: relative;
    -webkit-animation: background 10s cubic-bezier(1, 0, 0, 1) infinite;
    animation: background 10s cubic-bezier(1, 0, 0, 1) infinite;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
    height: 100vh;
}

h1 {
    text-indent: -9999px;
    margin-top: -125px;
}

img {
    width: 250px;
    text-indent: 0;
    display: block;
}

h2 {
    font-size: 20px;
    letter-spacing: 1px;
}

footer {
    font-size: 14px;
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: flex-end;
}

footer img {
    width: 80px;
    margin-left: 6px;
    opacity: 1;
    -webkit-transition: 0.2s ease all;
    transition: 0.2s ease all;
}

footer img:hover{
    opacity: 0.8;
}

@keyframes background {
    0% {
        background-color: #2B27D6;
    }
    50% {
        background-color: #6f37ed;
    }
    75% {
        background-color: #2C5CF7;
    }
    100% {
        background-color: #2B27D6;
    }
}