@charset "UTF-8";
/* CSS Document */

body {
    background-color: black;

}

#wrapper {
	position: relative;
	width: 800px;
	margin: 50px auto;
	text-align: center;
}

#wrapper img {
	width: 100%;
	height: auto;

}

article {
    position: absolute;
	width: 450px;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);

    /*	background-color: #E2E2E2;*/
    color: #191919;
    font-size: 25px;
    padding: 12px 24px;
    border:solid;
    border-radius: 20px;
	border-color: #EEEEEE;
	border-width: 4px;
    line-height: 36px;
    font-family: 'Sue Ellen Francisco', cursive;
    background-image: url(../images/paperTexture-1000px.jpg);
    -webkit-box-shadow: 0px 0px 20px 2px rgba(30,30,30,0.72);
    box-shadow: 0px 0px 20px 2px rgba(30,30,30,0.72);
}

.nxtBtn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(220px, -50%);
	background-color: rgba(231,231,231,1);
	color: #292929;
	font-size: 30px;
	padding: 1px 20px;
	border-color: rgba(239,239,239,0.7);
	border-width: 2px;
	border-style: solid;
	cursor: pointer;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 20px 2px rgba(30,30,30,0.3);
    box-shadow: 0px 0px 20px 2px rgba(30,30,30,0.3);
}

.prvBtn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-290px, -50%);
	background-color: rgba(231,231,231,1);
	color: #EFEFEF;
	font-size: 30px;
	padding: 1px 20px;
	border-color: rgba(239,239,239,0.7);
	border-width: 2px;
	border-style: solid;
	cursor: pointer;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 20px 2px rgba(30,30,30,0.3);
    box-shadow: 0px 0px 20px 2px rgba(30,30,30,0.3);
}

a:link {
 	text-decoration: none;
	color: #BDBDBD;
}

a:visited {
	text-decoration: none;
	color: #BDBDBD;
}

a:hover {
	color: #292929;
}