* {
	padding: 0;
	margin: 0;
}

html,
body {
	width: 100%;
	height: 100%;
	background-size: 100% 100%;
}

.page {
	width: 750px;
	height: 100%;
	overflow-y: auto;
	position: relative;
}


.btn {
	width: 332px;
	height: 94px;
	position: absolute;
}

.mucic {
	width: 69px;
	height: 69px;
	position: fixed;
	top: 56px;
	right: 50px;
}

.mucic.acts {
	animation: mucic 2s infinite;
	animation-timing-function: linear;
}

@keyframes mucic {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(360deg);
	}
}