body {
	font-family: "PlumbKaz";
	background: rgba(200, 200, 200, 0.9);
	font-weight: 400;
	font-size: 14px;
	line-height: 14px;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 10px;
}

.header {
	background: rgba(255, 255, 255, .9);
	backdrop-filter: blur(6px);
	box-shadow: 5px 5px 5px rgba(0, 0, 0, .2);
	padding: 5px 5px;
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 30px;
	font-size: 14px;
}

.navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px;
}

.navigationmenu-link {
	font-size: 20px;
	font-weight: 700;
	padding-right: 20px;
	letter-spacing: 1px;
}

.navigationmenu-link:hover {
	transition: all .5s;
	color: blue;
}

.title {
	justify-items: center;
}

.application-name {
	font-size: 25px;
	margin-bottom: 0;
}

.application-version {
	font-size: 8px;
	margin-top: 0.5em;
}

.logotype {
	display: flex;
	align-items: center;
	justify-items: center;
}

.logotype-icon {
	width: 40px;
	height: auto;
}

.logotype-title {
	color: white;
	background-color: black;
	font-size: 14px;
	font-weight: 300;
	padding: 2px;
	border: 2px solid black;
	border-radius: 10px;
	text-align: center;
}

.page {
	background: rgba(255, 255, 255, .8);
	backdrop-filter: blur(6px);
	box-shadow: 5px 5px 5px rgba(0, 0, 0, .2);
	padding: 20px 20px;
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 30px;
}

.button {
	min-width: 5em;
	font-family: "PlumbKaz";
	font-weight: bold;
	display: inline-block;
	background-color: black;
	color: white;
	border: none;
	cursor: pointer;
	border-radius: 10px;
	font-size: 1rem;
	transition: 0.3s;
}

.button:hover {
	background-color: blue;
}

.button_red {
	min-width: 5em;
	font-family: "PlumbKaz";
	font-weight: bold;
	display: inline-block;
	background-color: red;
	color: white;
	border: none;
	cursor: pointer;
	border-radius: 10px;
	font-size: 1rem;
	transition: 0.3s;
}

.button_red:hover {
	background-color: gray;
}