* {
	box-sizing: border-box;
}

body {
	background: linear-gradient(rgba(20, 26, 35,0.55),rgba(20, 26, 35, 0.55)), url("../img/minecraft-1.jpg") no-repeat center center fixed;
	background-size: cover;
	font-family: 'Minecraft', sans-serif;                                        
	margin: 0;
	position: relative;
}



a {
	text-decoration: none;
}

p {
	margin: 0;
	padding: 3px;
}

.container {
	text-align: center;
}

.logo img {
}

.item {
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.item:hover {
	-webkit-transform:scale(1.1);
	-ms-transform:scale(1.1);
	 transform:scale(1.1);
}

@media(max-width: 790px) {
	.logo img {
		width:470px;
		height:auto;
	}
}

