* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: Arial, Helvetica, sans-serif;
	color: white;
}

body {
	background: url('/assets/grfx/bg.jpg') no-repeat center center fixed;
	background-size: cover;
}


.content {
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: top;
	padding: 20px;
}

.header {
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: center;
	padding: 20px 0 10px 0;

}

.header img {
	width: 240px;
}

.box {
	width: 45%;
	max-width: 100%;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 50px 40px;
	border: 1px solid rgba(255,255,255,0.12);
	text-align: center;
}

.block {
	margin-bottom: 2em;
}

h1 {
	margin-bottom: 1.2em;
	font-size: 2.4rem;
}

h2 {
	margin-bottom: 0.6em;
	font-size: 1.4rem;
}
p {
	font-size: 1.15rem;
	line-height: 1.7;
	margin-bottom: 1.3em;
}

ul {
	width: 400px;
	margin: 0 auto;
	padding-bottom: 6px;
}
ul li {

	text-align: left;
	list-style: none;
	text-align: center;
	width: auto;
	padding: 6px;
	border-bottom: 1px solid #999;
}


.stationList {
	width: 700px;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding-left: 0;

	margin: 0 auto;
}

.stationList div.row {
	flex: 0 0 33.3333%;
	outline: 1px solid;
	border: 1px solid #000;
}

.stationList div.row a {
	display: flex;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	background-color: rgba(255, 255, 255, 1);
	color: #336699;
	font-weight: bold;
	text-decoration: none;
}

.stationList div.row a:hover {

	background-color: rgba(255, 255, 255, 0.9);
	color: #336699;
}

a {
	color: #1e90ff;
	font-weight: bold;
}

a:hover {
	text-decoration: none;
}

.footer {
	background-color: rgba(0, 0, 0, .4);
	width: 100%;
	text-align: center;
}
