html, body {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Georgia', serif;
	background-color: black;
	line-height: 1.2em;
}

body > section {
    border-radius: 1em;
    margin: 0 auto;
    margin-top:2rem; 
    text-align: center;
    width: calc( 100% - 4em );
    height: auto;
    padding: 1em; 
    overflow:hidden;
    background-color: #15151a; 
    color: #bbb;
}

/* make white text stand out over the rainy background */
body > section > article {
    text-shadow: 0px -2px 3px #000, 0px 2px 3px #000, 
                 0px -2px 2px #000, 0px 2px 2px #000;
}

.rainy-background {
    background-image: url("../images/seamless_rain_PublicDomainPictures.jpg");
    background-repeat: repeat;
}

.h-frame {
    position: relative;
    width: 60%;
    height: 0;
    padding-top: 40%;
    margin-left: auto;
    margin-right: auto;
}

.v-frame {
    position: relative;
    width: 40%;
    height: 0;
    padding-top: 60%;
    margin-left: auto;
    margin-right: auto;
}

/* 
   container of content to be drawn on top.
   parent must have defined position.
*/
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

/* 
   container of content to be drawn underneath.
   parent must have defined position.
*/
.underlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

.poem {
    white-space: nowrap; 
    line-height: 1rem;
    background-color: #222222;
    background-color: rgba(0,0,0,0);
    color: #dddddd;
    text-shadow: -1px -1px black, 1px -1px black, 
                 -1px 1px black, 1px 1px black;
}


.underlay > img {
    border-radius:1em;
    width: 100%;
    height: 100%;
}

.glow-panel a,
.glow-link {
   color: #ddd;
   text-shadow: none;
}
.glow-panel a:visited,
.glow-link:visited{
   color: #aaa;
}
.glow-panel:hover a,
.glow-link:hover{
   transition: color 1s;
   color: black;
   text-shadow: 1px 1px 1px white, -1px 1px 1px white, 1px -1px 1px white, -1px -1px 1px white;
}

.glow-panel:hover img{
    transition: filter 1s;
    filter: brightness(110%);
    cursor: pointer;
}


.mono-brown {
    filter: sepia(100%) hue-rotate(-15deg) opacity(50%);
}
.mono-yellow {
    filter: sepia(100%) hue-rotate(15deg) opacity(50%);
}
.mono-olive {
    filter: sepia(100%) hue-rotate(45deg) opacity(50%);
}
.mono-green {
    filter: sepia(100%) hue-rotate(75deg) opacity(50%);
}
.mono-spring {
    filter: sepia(100%) hue-rotate(105deg) opacity(50%);
}
.mono-teal {
    filter: sepia(100%) hue-rotate(135deg) opacity(50%);
}
.mono-azure {
    filter: sepia(100%) hue-rotate(165deg) opacity(50%);
}
.mono-blue {
    filter: sepia(100%) hue-rotate(195deg) opacity(50%);
}
.mono-violet {
    filter: sepia(100%) hue-rotate(225deg) opacity(50%);
}
.mono-purple {
    filter: sepia(100%) hue-rotate(255deg) opacity(50%);
}
.mono-rose {
    filter: sepia(100%) hue-rotate(290deg) opacity(50%);
}
.mono-red {
    filter: sepia(100%) hue-rotate(315deg) opacity(50%);
}

.mono-gray {
    filter: grayscale(100%) opacity(50%);
}
.mono-sepia {
    filter: sepia(100%) opacity(50%);
}

.translucent {
    filter: opacity(75%);
}


