body {
    font-family: "Century Schoolbook", "Book Antiqua", serif;
    font-size: 16pt;
    line-height: 21pt;
	background-color: Linen;
	padding-bottom: 10vh;
	text-rendering: optimizeLegibility;
	font-kerning: normal;
	text-wrap: pretty;
}

.poem {
	width: 90vw;
	max-width: fit-content; 
	margin: auto;
	padding: 10px 8%;
	position: relative;
	padding-bottom: 1.5rem;
/*	background-color: red; */
}

.about {
	width: 55vw;
	margin: auto;
	padding: 10px 5vw;
}

h1 {
	font-size: 22pt;
	text-wrap: balance;
}

h2 {
	font-size: 20pt;
	text-wrap: balance;
}

p {
	color: #181818;
}

.couplet {
    color: #36454F;
}

.smallcaps {
	font-variant-caps: all-small-caps;
} 

.note {
	font-size: 0.85rem;
	color: #292929;
	text-align: left;
	/*mobile settings*/
	position: absolute;
	bottom: 0;
	left: 8%;
	right: 8%;
	width: 90vw;
	max-width: fit-content;
	padding-top: 5px;
	border-top: 1px solid #292929;
	user-select: none;
    -webkit-user-select: none;
}

.note:hover {
	user-select: text;
    -webkit-user-select: text;
    cursor: text;
}

.quotation {
	font-family: monospace;
	margin-top: 10pt;
	margin-bottom: 10pt;
}

strong { /* Right now this only applies to "GIVE IT UP!" */
	letter-spacing: 0.06em;
}

a:link {
	color: MediumSlateBlue;
	text-decoration: none;
}

a:visited {
	color: RebeccaPurple;
	text-decoration: none;
}

a:hover {
	color: green;
	text-decoration: underline;
	text-decoration-color: green;
}

.blue {
	a {
		color: SteelBlue;
		text-decoration-color: SteelBlue;
	}
}

@media only screen and (max-width: 600px) {
/* fixing mobile layout */
body {
	line-height: 18pt;
}
h1 {
	font-size: 18pt;
}
h2 {
	font-size: 15pt;
}
p {
font-size: 13pt;
}
.about {
	width: 80vw
}
}

@media only screen and (min-width: 900px) {

    .poem {
        padding-bottom: 10px; 
        overflow: visible;    
    }

    p {
        position: relative;   
    }
/* desktop note settings */
    .note {
        position: absolute;
        bottom: auto; 
		top: 0;
        left: 100%;           
        right: auto;
        margin-left: 2rem;    
        width: max-content;
        max-width: 300px; 
        /* Style overrides */
        padding: 0;           
        border-top: none;     
    }
}