html, body {
    height: 100%;
    margin: 0;
}

#blobcat-container {
    min-height: 100%;
}

#text-container {
    position: absolute;
    width: 100%;
    z-index: 214748364;
    font-size: 5em;
    text-align: center;
    font-family: sans-serif;
    font-weight: 900;
    /*color: #eeeeee;*/
    text-shadow:
    -3px -3px 0 #000,
    3px -3px 0 #000,
    -3px 3px 0 #000,
    3px 3px 0 #000;
    animation: colorchange 10s;
    -webkit-animation: colorchange 10s;
    animation-iteration-count:infinite;
}
@keyframes colorchange {
    0%  {color: red;}
    17% {color: orange;}
    33% {color: yellow;}
    50% {color: green;}
    67% {color: blue;}
    83% {color: purple;}
    100%{color: red;}
}
@-webkit-keyframes colorchange {
    0%  {color: red;}
    17% {color: orange;}
    33% {color: yellow;}
    50% {color: green;}
    67% {color: blue;}
    83% {color: purple;}
    100%{color: red;}
}

.smiley-face {
    background: url("../img/smileyface.png");
    position: fixed;
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    z-index: 214748364;
}
#smiley-face-left {
    bottom: 0;
    left: 0;
}
#smiley-face-right {
    bottom: 0;
    right: 0;
}

.blobcat {
    position: fixed;
    width: 250px;
    height: 151px;
    background-size: 250px 151px;
    background-repeat: no-repeat;
}
.blobcat-gray {
    background-image: url("../img/blobcat-gray.png");
}
.blobcat-green {
    background-image: url("../img/blobcat-green.png");
}
.blobcat-orange {
    background-image: url("../img/blobcat-orange.png");
}
.blobcat-pink {
    background-image: url("../img/blobcat-purple.png");
}
.blobcat-red {
    background-image: url("../img/blobcat-red.png");
}
.blobcat-turquoise {
    background-image: url("../img/blobcat-turquoise.png");
}
.blobcat-yellow {
    background-image: url("../img/blobcat-yellow.png");
}
