/*Lukes Stylesheet*/


body {
    height: 90vh;
    /* background: linear-gradient(333deg, #6094ea, #f02fc2); */
    background: linear-gradient(333deg, #0277ba, #ffcc00);
    background-size: 400% 400%;
    animation: BackgroundGradient 10s ease infinite;
    font-family: "Open Sans Light", Lato, Sans-Serif;
}

@keyframes BackgroundGradient {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

h1 {color: white; font-size:8.0vh;}
h3 {color: white; font-size:4.5vh;}
a, a:hover, a:active {color: white;}

.admin-1 {font-size:8px; display:none;}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    text-align: center;
    color: white;
    width: 100%;
}