body {
    background-color: black;
    background-image: url("../img/tacobg.gif");
    background-repeat: repeat;
    color: white;
    text-align: justify;
    font-family: 'Comic Sans MS', Arial, Helvetica, sans-serif;
    margin-left: 32px;
}
a {
    color: red;
    text-decoration: underline;
    text-shadow: 1px 1px 3px black;
}
a:visited {
    color: red;
    text-decoration: underline;
    text-shadow: 1px 1px 3px purple;
}
a:hover {
    animation: blinkingText 0.5s infinite;
    text-decoration: none;
    text-shadow: 1px 1px 3px black;
}
div.wrapper {
    width: 800px;
    margin: 0px auto;
}
div.geocities {
    bottom: 0;
    right: 0;
    margin-bottom: 100px;
    margin-right: 100px;
    position: fixed;
}
p.centered {
    text-align: center;
}
.blinking{
    animation:blinkingText 0.5s infinite;
    text-align: center;
}
@keyframes blinkingText{
    0%{		color: #FFF;	}
    25%{	color: blue;	}
    50%{	color: fuchsia;	}
    75%{	color: greenyellow;	}
    100%{	color: #FFF;	}
}
div.logo {
    background-image: url("../img/dontsavethisfileplz.gif");
    background-repeat: no-repeat;
    width: 520px;
    height: 54px;
    display: block;
    margin: 0px auto;
}