.animasi{
	width: 0;
	height: 0;
	animation: animasi 2s ease  forwards;
}
.animation{
	text-align: center;
	animation: animation 2s ease  forwards;
}
@keyframes animasi {
	from {
		width: 0;
		height: 0;
	}
	to{
		width: 150px;
		height: 150px;
	}
}
@keyframes animation {
	form {
		padding-left: -1990;
	}
	to {
		padding-left: 100px;
	}
}

#focus{
	background-color: #aaa;
}
.white{
	color: #fff;
}