@import url('https://fonts.googleapis.com/css?family=Averia+Serif+Libre');

html {
    box-shadow: inset 0px 0px 100px rgba(5, 87, 255, 0.15);
height: 100%;
}

#bigLogo {
max-width: 800px;
margin: 5% auto 0;
text-align: center;
}

#bigLogo img {
max-width: 500px; 
}

@media(max-width:767px) {
    #bigLogo img {
        width: 100%; 
    }
}
 
.hidden {
    color: none; 
}

a {
    text-decoration: none !important;
}

 .slowBlink {
     color: #1c470f;
     font-family: 'Cabin Sketch', cursive;
     margin: 10px auto;
     text-align: center;
     width: 800px;
     
    -webkit-animation-name: slowBlink; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 10s; /* Safari 4.0 - 8.0 */
    -webkite-animation-iteration-count: infinite;

    animation-name: slowBlink;
    animation-duration: 30s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    font-weight: 100;
    font-size: 22px;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes slowBlink {
    0%   {color: gray;}
    100% {color: black;}
}

/* Standard syntax */
@keyframes slowBlink {
    0%   {color: #1c470f;}
    20%   {color: #b30091;}
    40%   {color: #13d100;}
    60%   {color: #1c470f;}
    80%   {color: #04b5a1;}
    100%   {color: #13d100;}
}

.hidden {
    display: none;
}