body,h1,h2,h3,h4,h5 {
    font-family: "Electrolize", sans-serif;
}

@keyframes rainbowBackground{
    0%{
        background-color: red;
    }
    16.6%{
        background-color: magenta;
    }
    33.3%{
        background-color: blue;
    }
    49.9%{
        background-color: cyan;
    }
    66.5%{
        background-color: green;
    }
    83.1%{
        background-color: yellow;
    }
    100%{
        background-color: red;
    }
}

body{
    background-color: red;
    animation-name: rainbowBackground;
    animation-duration: 80s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    font-weight: 100;
    font-size:16px !important;
}

.w3-half img{
    margin-bottom:-6px;
    margin-top:16px;
    opacity:0.8;
    cursor:pointer;
}

.w3-half img:hover{
    opacity:1;
}

div#Center{
    margin: 0 auto;
}