body {
    background-color: #1e1753;
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: Monaco, monospace;
    min-height: 100vh;
}

@font-face {
    font-family: Monaco;
    src: url(fonts/Monaco.ttf);
}

.content {
    color: #7B838C;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    flex-direction: row;
}

#profile-icon {
    width: 100px;
    margin: 0 15px 0 0;
}

#twitch-icon {
    margin-left: 7px
}

h1 {
    margin: 0 0 10px 0;
}

.links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 20px;
    gap: 10px;
    text-align: start;
    max-width: 260px;
    padding-left: 28px;
}

.link {
    display: flex;
    align-items: center;
    gap: 5px;
}

img {
    width: 20px;
}

a {
    color: #7B838C;
    text-decoration: none;
}

footer {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
}

footer p {
    position: fixed;
    bottom: 0;
    margin: 0 0 0 5px;
}

#character {
    width: 64px;
    height: 64px;
    margin: auto;
    background: url(images/64x64.png) repeat-x;
    animation: walk 3s steps(7) infinite;
    position: relative;
    top: 100px;
}

@keyframes walk {
    0% {
        background-position: 0
    }

    100% {
        background-position: -448px
    }
}

#sky {
    background: url(images/sky.png) repeat-X;
    animation: movingbg 14s linear infinite;
    height: 173px;
}

@keyframes movingbg {
    0% {
        background-position: 347px
    }

    100% {
        background-position: 0
    }
}

.fade {
    animation: fadein 2s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}