/* CSS Document */

html, body{
	margin:0;
    padding:0;
    border:0;
	height:100%;
}

body{
	background:#f5f5f5 url(../img/top-bg.jpg) no-repeat center center fixed;
	background-size:cover;
}

#logo{
	width:100%;
	height:100%;
	display:flex;
	justify-content:center;
	align-items:center;
}

#logo img{
	width:65%;
	filter:drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}


@media screen and (min-width: 481px){


#logo img{
	width:25%;
	filter:drop-shadow(0 0 0 rgba(0,0,0,0));
}


}