.year-selection {
	display: flex;
	flex-direction: column;
	
	max-width: 500px;
}

.year-selection-year {
	display: block;
	text-align: center;
	
	border-radius: 5px;
		
	padding: 1em;
	margin: .5em;
	
	transition: background .2s;
}

.year-selection-year:hover {
	background-color: whitesmoke;
	color: var(--ovgu-beere);
}

.year-selection-year:hover h1::before {
	content:'> ';
}

.year-selection-year:hover h1::after {
	content:' <';
}
