<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Elements */

body{ margin: 0px; padding: 0px }

#hitArea{
	position: absolute;
	top:0;
	left: 0;
	z-index: 1;
}

#hitArea img{
	border:0;
}

#banner {
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	box-sizing:border-box;
	overflow: hidden;
	position: relative;
	border:solid 1px #000;
	background-color: #000;
	width:320px;
	height:50px;
	cursor: pointer;
}



.drag{
	position: absolute;
	width: 320px;
	height: 250px;
	background-image: url(../assets/images/acelerometro.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	top: 0px;
	left: 0px;
	/*transition: all 1s linear;*/
}

.catavento{
	position: absolute;
	bottom: 8px;
	left: 5px;
	width: 31px;
	height: 32px;
	background-image: url(../assets/images/catavento.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transform: rotate(0deg);
	transition: all 1.5s ease-out;
}

</pre></body></html>