body
{
	background: url(bgimage.jpg);
	background-size: 100vw;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.zoom-in {cursor: zoom-in;}
.wait {cursor: wait;}
.default {cursor: default;}
.progress {cursor: progress;}


.para
{
	text-align: center;
	font-size: 2.5vw;
	font-style: ;
	font-family: Impact, Charcoal, sans-serif;
	margin-top: 1%;
	margin-left: 38vw;
	margin-right: 38vw;
	width: 24vw;
	padding: 1%	;
	background-color: white;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}


#title
{
	text-align: center;
	font-family: Impact, Charcoal, sans-serif;
	font-size: 6vw;
	color: white;
	font-style: oblique;
	margin-top: 6%;
}

#abouttitle
{
	text-align: center;
	font-size: 6vw;
	font-style: ;
	margin-top: 8%;
	margin-left: 10vw;
	margin-right: 10vw;
	width: 80vw;
	padding: 1%	;
	background-color: white;
	box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2), 0 20px 20px 0 rgba(0, 0, 0, 0.19);

}



#title p { display: inline }

#about
{
	cursor: zoom-in;
	text-align: center;
	font-family: "Lucida Console", Monaco, monospace; 
	font-size: 2.5vw;
	color: ;
	font-style: ;
	margin-top: 2%;
	margin-left: 44vw;
	margin-right: 50vw;

	width: 11vw;
	padding: 1%	;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

#picf
{
	cursor: progress;
	width: 19vw;
	background-repeat: no-repeat;
	background-position: center; 
	background-size: 300px;
	font-size: 30px;
	font-family: ;
	font-color: blue;
	text-align: center;
	margin-top: 0%;
	margin-right: 0%;
	margin-left: 0%;

	display: block;
}

#picc
{
	cursor: wait;
	width: 19vw;
	background-repeat: no-repeat;
	background-position: center; 
	font-size: 30px;
	font-family: ;
	font-color: blue;
	text-align: center;
	margin-top: 0%;
	margin-right: 00%;
	margin-left: 00%;

	display: block;
}

* {
  box-sizing: border-box;
}

.column { 
	position: relative;
	float: left;
	width: 21vw;
	padding: 1%;
	box-shadow: 0 8px 200px 0 rgba(0, 0, 0, 0.2), 0 6px 200px 0 rgba(0, 0, 0, 0.19);
	margin-left: 9.2%;
	margin-top: 1%;
	transition: transform .2s; /* Animation */
}
.column:hover
{
	transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}


.row::after {
  content: "";
  clear: both;
  display: table;
}


.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: white;   
}

.column:hover .overlay {
	cursor: wait;
  opacity: 0.5;
}


.textf:hover 
{
	opacity: 1;
}

.textf {
	cursor: progress;
	opacity: 0;
  color: black;
  font-family: Impact, Charcoal, sans-serif;
  font-size: 5vw;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}


.textcs:hover 
{
	opacity: 1;
}

.textcs {
	cursor: progress;
	opacity: 0;
  color: black;
  font-family: Impact, Charcoal, sans-serif;
  font-size: 5vw;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}