body {
    background-color: #282828;
    background-image: url("/assets/img/glitter.gif");
    background-repeat: repeat;
}

.gif-container {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: block;
}

.cat-container {
    background-color: #e0cf16;
    border-radius: 50%;
    width: 200px;
    height: 200px;
}

.gif {
    margin: auto;
    text-align: center;
}

.explosion-container {
    position: relative;
    left: 0;
    top: 0;
    width: 95%;
    height: 95%;
    padding: 0;
    margin: 0;
}

.explosion {
    position: absolute;
    top: 2rem;
}

.spin {
    animation: spinning 2s linear infinite;
}

.spin-reverse {
    animation: spinning-reverse 2s ease-in-out infinite;
}

.spin-fast {
    animation: spinning 1s linear infinite;
}

.footer {
    background-image: url("/assets/img/footer.gif");
    background-repeat: repeat-x;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
}

.banana {
    position: fixed;
    display: inline;
    animation: spinning 2s linear infinite;
}

.social-media {
    display: inline-block;
    position: fixed;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    color: #fff;
}

.social-media a {
    color: #fff !important;
    text-decoration: none;
    padding: 10px;
    font-size: 20px;
    display: block;
}

@keyframes spinning {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinning-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes banana {
    0% {
        left: 200px;
        bottom: 200px;
    }

    25% {
        left: 0;
        bottom: 200px;
    }

    to {
        left: -200px;
        bottom: -200px;
    }
}
