/* Futurism CSS - Welcome to the Future of Design! */

body {
    background: linear-gradient(135deg, #00f260, #0575e6);
    font-family: 'Futura', sans-serif;
    color: #ffffff;
    margin: 0;
    padding: 0;
    animation: changeColors 20s infinite alternate;
}

@keyframes changeColors {
    0% { background-color: #3333FF; }
    25% { background-color: #FF33FF; }
    50% { background-color: #33FFFF; }
    75% { background-color: #FFFF33; }
    100% { background-color: #33FF33; }
}

h1, h2, h3 {
    color: #ffffff;
    text-shadow: 2px 2px 4px #000000;
}

a {
    color: #00f260;
    text-decoration: none;
    transition: color 0.5s;
}

a:hover {
    color: #ffffff;
    text-shadow: 2px 2px 4px #00f260;
}

button {
    background-color: #0575e6;
    border: none;
    color: #ffffff;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

button:hover {
    background-color: #ffffff;
    color: #0575e6;
}

footer {
    background-color: #003366;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 0.9em;
    }

    header, footer {
        padding: 5px;
    }
}