body {
	margin: 0;
	width: 100%;
	height: 100vh;
	font-family: "Exo", sans-serif;
	color: #fff;
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.header {
    padding: 0.5em;
    box-shadow: 0 1px 1px rgba(0,0,0, 0.10);
	background: #2d3e50a0;
}

.logo {
	position: absolute;
	top: 1%;
	left: 1%;
}

ul.menu-list {
	float: right;
	margin: 0;
}


li.menu-item {
	padding: 0 10px;
	list-style: none;
	display: inline;
}

.container {
	width: 100%;
	min-height:400px;
	text-align: center;
}

.content {
	max-width: 800px;
    margin: 5 auto;
	padding: 0 5px;
}

.footer {
	width: 100%;
	position: absolute;
	bottom: 1%;
	height: 295px;
	text-align: center;
    background-image: url(img/sfondino-bianco.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

h1 {
	font-weight: 300;
}

h3 {
	color: #eee;
	font-weight: 100;
}

h5 {
	color:#eee;
	font-weight:300;
}

a,
a:hover {
	text-decoration: none;
	color: #ddd;
}

