/********************resets*******************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*:focus {
    outline: 0;
}

/******************** end resets   *******************************/


body{
	display: flex;
	flex-flow: column;
	font-size: 3vw;
	font-family: Gill Sans,Gill Sans MT,Calibri,sans-serif;
/*	height: 100vh;*/
	background-color:antiquewhite;
}


#modal-background {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
        opacity: .50;
        filter: alpha(opacity=50);
        z-index: 1000;
}

#modal-content {
		background-color: white;
		border-radius: 10px;
		display: none;
		height: 240px;
		left: 50%;
		margin: -120px 0 0 -160px;
		padding: 10px;
		position: absolute;
		top: 50%;
		width: 320px;
		z-index: 1000;
}

#modal-background:active, #modal-content:active {
		display: block;
}

.poems {
	display:flex;
	align-item: center;
	margin: .4vw;
}

.poems li{
	display: inline-flex;
	color: #e64f78;
	font-size: 5vw;
	align-self: center;
}

  a{
	display: flex;
	text-decoration: none;
	padding: .3vw;
	color: #555;
}
.poems li:hover{
	color:#e62056;
}
a:hover p{
	color: #555;
	opacity: 1;
}
.intro{
	display: inline-flex;
	font-size: 1.3vw;
	opacity: 0.5;
	align-self: center;
	color: #555;
	margin-left: 1vw;
}


main{
	display: flex;
	flex-flow: column;
	height: 70vh;
	align-items: center;
}

main span{
	font-size: 3.5vw;
	color: #555;
	opacity: 0.5;
	text-align: center;
}

button{
	color: #e64f78;
	font-size: 15vw;
	font-family: Didot,Didot LT STD,Hoefler Text,Garamond,Times New Roman,serif;
	border:none;
	background: none;
}

button:hover{
	padding: 1vw;
	color: #e62056;
	transition: padding 1s ease-in-out;
}

button:hover span{
	opacity: 1;
}

#output {
/*	display: flex;*/
	flex: 1 1 30vh;
	justify-content: center;
	font-family: Didot,Didot LT STD,Hoefler Text,Garamond,Times New Roman,serif;
	padding: 6vw;
	width: 75%;
	align-self: center;
	word-break: break-all;

}
