.Name {
    font-weight: 700;
    font-size: 400%;
    margin-bottom: .2em
}

.github {
    fill: #fff
}

.Content {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.Container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(312deg, green, #000000);
    background-size: 400% 400%;
    -webkit-animation: AnimationName 180s ease infinite;
    -moz-animation: AnimationName 180s ease infinite;
    animation: AnimationName 180s ease infinite
}

@-webkit-keyframes AnimationName {
    0% {
        background-position: 13% 0%
    }

    50% {
        background-position: 88% 100%
    }

    100% {
        background-position: 13% 0%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 13% 0%
    }

    50% {
        background-position: 88% 100%
    }

    100% {
        background-position: 13% 0%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 13% 0%
    }

    50% {
        background-position: 88% 100%
    }

    100% {
        background-position: 13% 0%
    }
}