@keyframes bgcolor {
    0% {
        background-color: #4a6583
    }

    25% {
        background-color: #6c8094
    }

    50% {
        background-color: #4e6881
    }

    75% {
        background-color: #697a8c
    }

    100% {
        background-color: #3c5369
    }
}

audio {
    filter: sepia(20%) saturate(70%) grayscale(1) contrast(99%) invert(12%);
    width: 100%;
    height: 50px;
}
body {
    -webkit-animation: bgcolor 20s infinite;
    animation: bgcolor 10s infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    color: white;
	font: 14px Baskerville, "Palatino Linotype", "Times New Roman", Times, serif;
	}
	
div, h1, h2, p {
    margin: 0;
    padding: 0;
}

h1, h2 {
    font-weight: normal;
    text-align: center;
    }
    
h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 10px;
    }

h2 {
    color: white;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    }
    
p {
    line-height: 1.5;
    margin-bottom: 15px;
    }

/* The magic of selectors begins... */

h2:before {
    content: '\2014';
    }

h2:after {
    content: '\2014';
    }

#poem { 
        margin: auto;
        padding: 20px 0;
        text-align: left;
        width: 390px;
}

#poem h2 + p:first-letter {
        float: left;
        font-size: 38px;
        line-height: 1;
        margin: 2px 5px 0 0;
    }
    
#poem p:first-line {
    font-variant: small-caps;
    letter-spacing: 1px;
    }

#poem p:last-child {
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.var-highlight{
	color: #C0AD60;
}
.string-highlight{
	color: rgba(253, 149, 90, 0.8);
}

.typewriter{
		font-size: 150%;
		margin: 10% left;
		font-family: "Courier New";
}
.typewriter:after{
		content: "|";
		animation: blink 500ms linear infinite alternate;
}

#btnContainer{
    text-align: center;
}

.optionBtnCont{
    text-align: right;
    display: block;
    margin-left: 50%;
}


@-webkit-keyframes blink{
	0%{opacity: 0;}
	100%{opacity: 1;}
}

@-moz-keyframes blink{
	0%{opacity: 0;}
	100%{opacity: 1;}
}

@keyframes blink{
	0%{opacity: 0;}
	100%{opacity: 1;}
}