body {
    margin: 0;
    padding: 0;
    font-family: "Goudy Bookletter 1911", serif;
    color: #fff;
    background-color: #000;
    /* background-image: url("/images/tiled-bg.gif"); */
    background-repeat: repeat;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.main-header {
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center;
}

.main-header .main-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 3em;
    text-shadow: 2px 2px #ff0000;
}

.blood-gif {
    display: block;
    width: 100%;
    height: auto;
    max-width: 700px;
    margin: 0 auto;
}

.nav-links a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    background-color: #800000;
    border: 2px solid #ff0000;
    text-shadow: 1px 1px #000;
    font-size: 1.2em;
    transition: 0.3s ease;
}

.nav-links a:hover {
    background-color: #ff4500;
}

.poem {
    text-align: left;
}

.content {
    padding: 20px;
    font-size: 1.2em;
    background: linear-gradient(black, #330000);
    border: 2px solid #ff0000;
    margin: 20px auto;
}

.side-gifs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.side-gif {
    width: 100px;
    height: auto;
}

.left-gif {
    margin-left: 100px;
}

.right-gif {
    margin-right: 100px;
}

@media (max-width: 1000px) {
    .side-gifs {
        display: none;
    }
}

.footer {
    margin-top: 40px;
    padding: 10px;
    background-color: #800000;
    border-top: 2px solid #ff0000;
}

.footer a {
    color: gray;
    text-decoration: none;
}

.footer a:hover {
    color: #ff0000;
}