/* Global Styling */
html, body {
	margin:0px; 
	padding: 0px;
	background-color: rgba(0,0,0,1);
	font-family: 'Oxygen', sans-serif;
}

@font-face {
	font-family: Oxygen;
	src: url(Oxygen-Light.ttf);
	font-weight: 300;
}

.right {float: right !important;}
/* Image zoom on hover + Overlay colour */
.parent {
	width: 100%; 
	margin: 0 0;
	height: 100%; 
	border: 0;
	overflow: hidden;
	position: relative;
	float: left;
	display: inline-block;
	cursor: pointer;
}

.child {
	height: 100%;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

/* Several different images */
.bg {background: url(auctory.jpg) no-repeat center;}

a {
	display: none;
	font-size: 35px;
	color: #ffffff !important;
	font-family: 'Oxygen', sans-serif;
	text-align: center;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 50px;
	cursor: pointer;
	text-decoration: none;
}

.parent:hover .child, .parent:focus .child {
	-ms-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

.parent:hover .child:before, .parent:focus .child:before {
	display: block;
}

.parent:hover a, .parent:focus a {
	display: block;
}

.child:before {
	content: "";
	display: none;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(10,10,10,0.8);
}

/* Media Queries */
/*
 * @media screen and (max-width: 960px) {
	.parent {width: 100%; margin: 20px 0px}
	.wrapper {padding: 20px 20px;}
}
*/


.hello {display: none}
