*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body{
	position: relative;

	width: 100%;
	height: 100%;

	font-family: 'Oswald', sans-serif;
	/*font-family: 'Lora', serif;*/
}

.wrap{
	display: flex;
	flex-wrap: wrap;

	width: 100%;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 30px;
	padding-left: 30px;
}

h2{
	text-transform: uppercase;
}

ul{
	margin-top: 60px;

	list-style: none;
}

li{
	padding: 5px 20px;

	list-style: none;

	text-decoration: none;
	text-transform: uppercase;

	color: #cccccc;
}

.entry{
	width: 100%;
	margin-top: 60px;
	margin-bottom: 60px;
	/*margin-bottom: 60px;*/

	text-align: center;
}

.entry:last-child{
	margin-bottom: 60px;
}

.entry a{
	display: inline-block;

	transition: all .3s ease-in-out;
	text-decoration: none;
	/*padding: 5px 20px;*/
	text-transform: uppercase;

	color: #444;
}

.entry a:hover, .entry a:focus{
	text-decoration: underline;

	color: #000;
}

.entry img {
	max-width: 62%;
	height: auto;
}

.resources{
	margin-right: auto;
	margin-left: auto;

	text-align: center;
}

@media screen and (min-width: 768px) {
	
	.entry {
		/*display: block;*/
		width: 50%;
		/*float: left;*/
	}
}