body {
    margin: 0;
    padding: 0;
}

#animation-container {
    /* position: absolute;*/
    height: 100%;
    width: 100%;
    max-height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#background-animation {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    overflow:hidden;
    filter: blur(0.2vw);
    opacity: 0.1;
}

#text-animation {
    display: block;
    font-family: sans-serif;
    font-weight: lighter;
}

#text-animation span {
    font-size: 10vw;
    opacity: 0;
}

#text-animation small {
    font-size: 3vw;
}

#text-animation span, #text-animation small {
    display: inline-block;
    position: relative;
    transition: all 1000ms ease-out;
    -ms-transform: scale(1.0);
    -webkit-transform: scale(1.0);
    -moz-transform: scale(1);
    -o-transform: scale(1.0);
    transform: scale(1.0);

}

#text-animation:hover span {
  /*
    -ms-transform:     scale(0.95) !important;
    -webkit-transform: scale(0.95) !important;
    -moz-transform:    scale(0.95) !important;
    -o-transform:      scale(0.95) !important;
    transform:         scale(0.95) !important; */
}

#text-animation .text:hover, #text-animation small:hover {
    cursor: default;
    color:  black;
    
    -ms-transform:     scale(1.1) !important;
    -webkit-transform: scale(1.1) !important;
    -moz-transform:    scale(1.1) !important;
    -o-transform:      scale(1.1) !important;
    transform:         scale(1.1) !important;
    
    animation-name: rainbow;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}


#text-animation span.activate {
    top: 0vw;
    opacity: 1;
}

#text-animation .gray.activate {
    color: gray;
}

.you {
    font-weight: bold;
    font-style: oblique;

    animation-name: rainbow;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
}

@keyframes rainbow {
    0%   {text-shadow: 0 0 0.5vw #f00;}
    17%  {text-shadow: 0 0 0.5vw #ff0;}
    33%  {text-shadow: 0 0 0.5vw #0f0;}
    50%  {text-shadow: 0 0 0.5vw #0ff;}
    67%  {text-shadow: 0 0 0.5vw #00f;}
    83%  {text-shadow: 0 0 0.5vw #f0f;}
    100% {text-shadow: 0 0 0.5vw #f00;}
}  

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    font-family: sans-serif;
    text-align: center;
}
footer p {
    margin: 5px;
    filter: opacity(0.30);
    transition: all 300ms ease;
}

footer p:hover {
    cursor: default;
    filter: opacity(0.70);    
}

footer p a {
    color: magenta;
    transition: all 300ms ease;
}

footer p a:hover {
    font-size: 120%;
    font-weight: bold;
}