#language-selection {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	background: rgba(0, 0, 0, 1);
	/* Czarny ekran */
	padding: 20px;
	border-radius: 10px;
	color: white;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#language-selection .button {
	margin: 15px;
	padding: 10px 25px;
	background-color: rgba(0, 0, 0, 0.7);
	border: 1px solid rgba(130, 130, 130, 0.421);
	color: white;
	font-size: 1.8rem;
	cursor: pointer;
	border-radius: 5px;
	transition: background-color 0.3s ease, color 0.3s ease;
	width: 120px;
	text-align: center;
}

#language-selection .button:hover {
	background-color: rgba(24, 23, 23, 0.737);
	color: rgb(136, 2, 2);
}
