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

html {
}

body {
  background: url('../images/bg.jpg') no-repeat fixed top;
  background-size: auto;
  background-color: rgb(40,24,24);
  font-family: Century Gothic, Helvetica, Arial, sans-serif;
  margin-top: 0px;
  overflow-y: scroll;
}

header {	
  height: 413px;
  width: 801px;
  margin: 0px auto 0px;
}

.headerUpperSpace {
	width: 801px;
	height: 343px;
	margin: 0px auto 0px;
}

.headerImage {
	position: relative;
	top: 196px;
	float: right;
}

nav {
  width: 801px;
  height: 71px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

nav .this {
  display: inline-block;
  width: 160px;
  height: 55px;
  margin-top: 8px;
  padding-top: 6px;
  border-radius: 3px;
  background-color: rgba(177,79,26,0.6);
  color: rgba(250,222,222,1);
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  transition: 0.3s;
  text-decoration: none;	
}

nav a {
  display: inline-block;
  width: 160px;
  height: 55px;
  margin-top: 8px;
  padding-top: 6px;
  border-radius: 3px;
  background-color: rgba(250,222,222,0.3);
  color: rgba(56,48,48,1);
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  transition: 0.3s;
  text-decoration: none;
}

nav a:hover {
  background-color: rgba(177,79,26,0.6);
  color: rgba(250,222,222,1);	
}

.content {
  width: 801px;
  margin: 0px auto 100px;
}

.content .worksPreview {
  display: block;
  margin: 15px auto 0px;
  width: 801px;
  height: 190px;
}

.content .worksPreview .worksLeftBox {
  display: inline-block;
  float: left;
  width: 490px;
  height: 190px;
  background-color: rgba(39,39,39, 0.6);
}

.content .worksPreview .worksLeftBox .mySlides 
{
    border: none; 
    opacity: 0; 
    position: absolute;
	margin: 11px 13px;
    -webkit-transition: opacity 1s linear;
    -moz-transition: opacity 1s linear;
    -o-transition: opacity 1s linear;
    transition: opacity 1s linear;
}

.content .worksPreview .worksLeftBox .showMe 
{	
  opacity: 1;
}

.content .worksPreview .worksRightBox {
  display: inline-block;
  float: right;
  width: 311px;
  height: 190px;
  background-color: rgba(30,30,30, 0.7);
  text-decoration: none;
  color: rgb(250,222,222);
}

.content h1 {
  font-size: 30px;
  margin-top: 9px;
  margin-left: 25px;
  margin-bottom: 0px;
}

.content h2 {
  font-size: 18px;
  margin-top: 0px;
  margin-left: 25px;
  margin-bottom: 78px;
}

.content h3 {
  font-size: 16px;
  margin-top: 0px;
  margin-left: 25px;
  margin-bottom: 0px;
  color: rgb(219,155,155);
}

.content h4 {
  font-size: 14px;
  margin-top: 0px;
  margin-left: 25px;
  margin-bottom: 0px;
  color: rgb(219,155,155); 
}

.content .footer {
	display: block;
	width: 801px;
	margin: 40px auto 0px;
	background-color: rgba(122,78,78,0.8);
	height: 30px;
}

.footer p {
  font-size: 14px;
  text-align: center;
  color: #999999;
  margin-top: 6px;
}

.content .footerExtended {
	display: block;
    float: left;
	width:801px;
	margin:0px auto 0px;
	background-color: rgba(122,78,78,0.01);
	height:300px;
}





.popUpWindow {
  position: fixed;
		font-family: Arial, Helvetica, sans-serif;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(0,0,0,0.66);
		z-index: 99999;
		opacity:0;
		-webkit-transition: opacity 400ms ease-in;
		-moz-transition: opacity 400ms ease-in;
		transition: opacity 400ms ease-in;
		pointer-events: none;
}

.popUpWindow:target {
  opacity:1;
  pointer-events: auto;
}

.popUpWindow > div {
  width: 800px;
  height: 70%;					/* assume the screen is mobile at first, allow popUp window to be taller */
  position: relative;
  margin: 10% auto;
  padding: 10px 10px 13px 10px;
  border-radius: 10px;
  background: rgba(200,200,200,1);
  background: -moz-linear-gradient(#fff, #999);
  background: -webkit-linear-gradient(#fff, #999);
  background: -o-linear-gradient(#fff, #999);		
}

/*  this screen is most likely PC moniter, to shorten height of popUp window for PC */
@media only screen and (max-height: 1100px) {
  .popUpWindow > div {height:90%; margin: 2.5% auto;}
}

.popUpWindow #popUpContent {
	width: 800px; 
    height: 100%;
	border-width: 0px;  
}

.close {
  background: #606061;
		color: #FFFFFF;
		line-height: 48px;
		position: absolute;
		right: -12px;
		text-align: center;
		top: -10px;
		width: 48px;
		text-decoration: none;
		font-size: 24px;		
		-webkit-border-radius: 24px;
		-moz-border-radius: 24px;
		border-radius: 24px;		
		-moz-box-shadow: 3px 3px 6px #000;
		-webkit-box-shadow: 3px 3px 6px #000;
		box-shadow: 3px 3px 6px #000;
}

.close:hover { 
  background: rgb(177,79,26); 
}





