@charset "utf-8";

#hello_world {display:block;text-align:center;margin-bottom:40px;font-size:2.8em;font-weight:100;font-style:normal;font-family:"Nanum Square", "Nanum Gothic", "dotum", "Poppins", sans-serif}
.login_hello h2 {}
.logout_hello h2 {}

.animated1 {
	-webkit-animation-duration:1s;
	animation-duration:1s;
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both;
	-webkit-animation-timing-function:linear;
	animation-timing-function:linear;
	animation-iteration-count:infinite;
	-webkit-animation-iteration-count:infinite;
}

@-webkit-keyframes bounce1 {
  0%, 100% {-webkit-transform:translateY(0)}
  50% {-webkit-transform:translateY(-5px)}
}

@keyframes bounce1 {
	0%, 100% {transform:translateY(0)}
	0%, 100% {-webkit-transform:translateY(0)}
	50% {transform:translateY(-5px)}
	50% {-webkit-transform:translateY(-5px)}
}
.bounce1 {-webkit-animation-name:bounce1;animation-name:bounce1}

@media (max-width:890px) {
	#hello_world {font-size:2em;margin:10px 0 20px}
}