html{
	position: relative;
}
@font-face {
  font-family: 'Nexa Light';
  src: url('font/nexa-light.eot'); /* IE9 Compat Modes */
  src: url('font/nexa-light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('font/nexa-light.woff') format('woff'), /* Modern Browsers */
       url('font/nexa-light.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('font/nexa-light.svg#8daeb39b16ba4fbde275db0ba71a5206') format('svg'); /* Legacy iOS */
       
  font-style:   normal;
  font-weight:  200;
}
body{
	width: 100%;
	background-color: #1395A3;
	font: 400 20px/1em "Nexa Light", Arial, Helvetica, Geneva, sans-serif;
	color: #f5f5f5;
	text-align: center;
	height: 100%;
	margin: 0;
	padding: 0;
}
object{
	width: 60%;
	margin: 90px auto 100px;
	display: block;
	animation: emanimate 3s ease-in-out infinite alternate;
}
.bottom-container{
	width: 100%;
	position: fixed;
	bottom: 10px;
}
blockquote{
	display: block;
	margin: 1em auto;
	font-size: 2em;
}
#contatti, #links{
	display: table;
	margin: 0 auto;
	padding: 0;
	list-style: none;
}
#links{
	border-top: 1px solid #ccc;
}
.contatti__li, .links__li{
	display: block;
	float: left;
	margin: 0 30px;
	padding: .4em 0;
}
.links__li{
	font-size: .8em;
}
a{
	color: inherit;
	text-decoration: none;
	transition: all .2s linear;
	transition: all .2s linear;
}
a:hover{
	text-shadow: 0 0 5px white;
}

@keyframes emanimate {
	from { filter: drop-shadow(0 0 0px white); }
	to { filter: drop-shadow(0 0 30px white); }
}

@media only screen and ( max-width: 1024px ) {
	.contatti__li, .links__li{
		padding: 0;
		clear: none;
		margin: 0 10px;
	}
}

@media only screen and ( max-width: 481px ) {
	object{
		width: 80%;
		margin: 30px auto 30px;
	}
	blockquote{
		font-size: 1.3em;
		margin: .5em;
	}
	.contatti__li{
		clear: both;
		padding: .1em 0;
	}
	.links__li{
		font-size: .5em;
		margin: 0;
		padding: .2em;
	}
}