body {
    background-color: #3d383d;
    font-family: Arial, sans-serif;
}
h1 {
    padding: 10px;
    text-align: center;
    font-size: 7em;
    font-family: 'Jersey 10', Geneva, Tahoma, sans-serif;
}
#bio {
    color: #cc71b8;
    font-size: 3em;
    font-family: 'Jersey 15', 'Courier New', Courier, monospace;
    padding: 10px;
    text-align: center;
}
#bottom {
    color: #5a5a5a;
    font-size: 2em;
    font-family: 'Jersey 15', 'Courier New', Courier, monospace;
    position: fixed;
    bottom: 3%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
#rainbow {
    color: transparent;
    background: linear-gradient(270deg, #f700ff, #00a2ff, #f700ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    animation: gradientScroll 10s ease infinite;
}
footer {
    background-color: #222;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
@keyframes gradientScroll {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}