/*************************
Button and screen styles
*************************/
html {
min-height: 100%;
}
body {
margin: 0;
padding: 0 0;
/*background-image:url("congruent_pentagon.png");*/
	/*background-image:url("office.png");*/
	/*background-image:url("subtle.png");*/
background-image: url("psychedelic.png");
}
#content {
-webkit-transition: All .5s ease;
-moz-transition: All .5s ease;
-o-transition: All .5s ease;
-ms-transition: All .5s ease;
transition: All .5s ease;
background-color: #FFF;
position: absolute;
z-index: 1;
width: 100%;
height: 100%;
margin: auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
#clickme {
font-family: Lato;
font-weight: 300;
text-align: center;
-webkit-transition: All .5s ease;
-moz-transition: All .5s ease;
-o-transition: All .5s ease;
-ms-transition: All .5s ease;
transition: All .5s ease;
cursor: pointer;
cursor: hand;
background-color: #7db9e8;
color: #FFF;
width: 150px;
height: 50px;
border-radius: 5px;
/*center of page*/
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
}
#screen {
-webkit-transition: All .5s ease;
-moz-transition: All .5s ease;
-o-transition: All .5s ease;
-ms-transition: All .5s ease;
position: absolute;
z-index: 1;
width: 100%;
height: 100%;
background-color: black;
opacity: 0;
visibility: hidden;
}
.text {
display: block;
margin-top: 15px;
}
#clickme:hover {
background-color: #9EC6E5;
}
/*************************
Popup Notification Styles
*************************/

#notification {
-webkit-transition: All .5s ease;
-moz-transition: All .5s ease;
-o-transition: All .5s ease;
-ms-transition: All .5s ease;
transition: All .5s ease;
color: #444;
font-family: Lato;
font-weight: 300;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
margin: auto;
border-radius: 5px;
z-index: 2;
width: 20%;
height: 20%;
background-color: #FCF8EA;
opacity: 0;
visibility: hidden;/*border: solid 1px #000;*/
}
.menuText {
display: block;
text-align: center;
padding-bottom: 5px;
}
#line1 {
padding-top: 10px;
}
#close {
font-family: Lato;
font-weight: 300;
text-align: center;
-webkit-transition: All .5s ease;
-moz-transition: All .5s ease;
-o-transition: All .5s ease;
-ms-transition: All .5s ease;
transition: All .5s ease;
cursor: pointer;
cursor: hand;
background-color: #EA8475;
color: #FFF;
width: 150px;
height: 50px;
border-radius: 5px;
position: absolute;
top: 50px;
left: 0;
bottom: 0;
right: 0;
margin: auto;
}
#close:hover {
background-color: #E8A096;
}
/*************************
footer stuff
*************************/
#footer {
font-size: 15px;
font-family: Lato;
font-weight: 300;
position: absolute;
width: 100%;
text-align: center;
bottom: 10px;
color: #555;
}
