@import url(//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSansNeo.css);

*,
*:before,
*:after {
	margin: 0;
	padding: 0;
	box-sizing: inherit;
	color: inherit;
}

html {
	font-family: 'Spoqa Han Sans Neo', 'sans-serif';
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

#root {
	width: 100%;
	height: 100vh;
	min-height: 100vh;
	position: relative;
}

footer {
	width: 1200px;
	min-width: 1200px;
	max-width: 1200px;
	height: 90px;
	font-size: 12px;
	color: #564e50;
	line-height: 1.5;
	text-align: center;
	background: #ffffff;
	padding: 0 10px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@keyframes wobble-hor-bottom {
	0%,
	100% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
	}
	15% {
		-webkit-transform: translateX(-30px) rotate(-6deg);
		transform: translateX(-30px) rotate(-6deg);
	}
	30% {
		-webkit-transform: translateX(15px) rotate(6deg);
		transform: translateX(15px) rotate(6deg);
	}
	45% {
		-webkit-transform: translateX(-15px) rotate(-3.6deg);
		transform: translateX(-15px) rotate(-3.6deg);
	}
	60% {
		-webkit-transform: translateX(9px) rotate(2.4deg);
		transform: translateX(9px) rotate(2.4deg);
	}
	75% {
		-webkit-transform: translateX(-6px) rotate(-1.2deg);
		transform: translateX(-6px) rotate(-1.2deg);
	}
}