main {
	background: url('../images/tunnel_clouds.webp');
	background-size: auto;
	background-position: center;
}
header {
	background: url(../images/clouds_header_bright.webp);
	background-size: cover;
	background-position: bottom center;
}
.site-header {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
}
.site-header span {
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 7.77vw;
    font-family: 'Georgia', serif;
    background: radial-gradient(#ff0 35%, orange 49%, #f00 89%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    transform: scaleY(0.9);
    -webkit-text-stroke: 1.1px rgb(255, 130, 0);
    letter-spacing: 2px;
    filter: drop-shadow(1px 1px 1px black) drop-shadow(2px 2px 2px black);
}
.subtitle {
	width: 100%;
	font-size: 1.6rem;
	font-size: clamp(1.5rem, 2.0vw + 1rem, 5.0rem);
	color: yellow;
	margin: 0 auto;
	padding: 0;
	border-top: 4px ridge darkblue;
	border-bottom: 4px ridge darkblue;
	background: linear-gradient(#03A9F4, #008);
	text-align: center;
}
.container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	gap: 50px;
	filter: drop-shadow(0 5px 5px #000);
}
.container a {
	width: 125px;
	height: 125px;
	margin: 20px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-size: auto 250px;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	text-decoration: none;
	color: #fff;
	font-weight: 777;
	background-image: url('../images/menu2.webp?v=1');
	transition: transform 0.5s ease-in-out, color 0.3s ease;
	text-shadow: 1px 1px 2px #000;
	border-radius: 7px;
	font-size: 16px;
	-webkit-text-stroke: 0.3px black;
}
.container a span {
	position: absolute;
	bottom: -20px;
	text-align: center;
	width: 145px;
	color: white;
	font-weight: bold;
}
.container a:hover,
.container a:active,
.container a:focus {
	transform: scale(1.18);
	filter: drop-shadow(0 0 0.75rem dodgerblue);
	z-index: 10;
}
.container a:hover span,
.container a:active span,
.container a:focus span {
	color: #ff0;
}