a {
    color: #00FF00;
    font-family: monospace;
    font-size: 20px;
    text-decoration: none;
}

a:hover {
    color: #00FFFF;
    text-decoration: underline;
    transition: 5s;
}

body{
    background-color: #2e6da4;
    color: #fff;
    text-align: center;
}

@keyframes spin {
    from {
        transform: rotateX(5deg) rotateY(90deg) rotateZ(5deg);
    }
    to {
        transform: rotateX(-5deg)  rotateY(-90deg) rotateZ(5deg);
    }
}

h1 {
    animation-duration: 2.5s;
    animation-name: spin;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    font-size: 200px;
    margin-bottom: 100px;
    margin-top: 20px;
    text-shadow: 2px 4px #000;
}

h1:hover {
    color: #ffff00;
    transition: 10s;
}

#ad-bottom {
    margin-bottom: 20px;
}

#project_list {
    margin-bottom: 60px;
}

#project_list li {
    list-style-type: none;
    margin-bottom: 20px;
    text-shadow: 2px 2px rgba(32,32,32,0.75);
}

#footer_text {
    color: #fff;
    font-family: sans-serif;
    font-size: 14px;
    font-variant: small-caps;
    margin-bottom: 20px;
    text-shadow: 2px 2px rgba(32,32,32,0.5);
}

#footer_text:hover {
    font-size: 0px;
    transition: .5s;
}

#footer_text a{
    color: inherit;
    font-family: inherit;
    font-size: inherit;
}

#footer_text a:hover {
    color: #0000ff;
    font-size: 200px;
    transition: 15s;
}