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

body {
	height: 100vh;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #102343;
	position: relative;
}

.center-bg {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	z-index: -1;
}

.overlay {
	position: relative;
	margin: 0 auto;
	top: 63%;
	background: rgba(0, 0, 0, 0.55);
	padding: 20px 40px;
	border-radius: 12px;
	text-align: center;
	color: white;
	backdrop-filter: blur(5px);
	width: auto;
	max-width: 400px;
}

.overlay address {
	font-style: normal;
	line-height: 1.5;
}

.overlay a {
	color: #FFD700;
	text-decoration: none;
}

.overlay a:hover {
	text-decoration: underline;
}