/*Styles go Here*/

* {
	box-sizing: border-box;
}

body {
	background-color: #ffe6cc;
	color: #333;
	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}

.gallery {
	max-width: 900px;
	margin: 0 auto;
}

.gallery .entry {
	float: left;
	width: 25%;
	padding-left: 16px;
	padding-right: 16px;
	margin-bottom: 32px;
}

.resize {
	float: left;
	width: 200px;
	height: auto;
}

.resize2 {
	float: left;
	width: 550px;
	height: 550px;
}

.lightbox-overlay {
	opacity: .6;
	background-color: #000;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	display: none;
}

.lightbox-active .lightbox-overlay {
	display: block;
}

.lightbox {
	background-color: white;
	position: fixed;
	display: none;
	top: 50%;
	left: 50%;
	width: 610px;
	height: 610px;
	margin-left: -400px;
	margin-top: -300px;
	padding: 32px;
	text-align: center;
}

.lightbox-active .lightbox-overlay,
.lightbox-active .lightbox {
	display: block;
}

.close {
	font-size: 40px;
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
}


