.background {
	width: 100%;
	height: 100%;
	background-color: #011635;
	border-radius: 2px;
}

.tab {
	margin: auto;
	padding: 3px 0;
	text-align: center;
	color: #5d7aa5;
}

.tab-text {
	white-space: nowrap;
	animation: scale-reverse 0.5s ease-out 1 normal;
}

@keyframes scale-reverse {
	from {
		font-size: 150%;
	}
	to {
		font-size: 100%;
	}
}

.tab-text:hover {
	animation: scale 0.5s ease-out 1 normal;
	animation-fill-mode: forwards;
}

@keyframes scale {
	from {
		font-size: 100%;
	}
	to {
		font-size: 150%;
	}
}