* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: black;
	font-family: Arial, sans-serif;
	color: white;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

header {
	background-color: black;
	padding: 20px;
	width: 100%;
	border-bottom: 4px solid white;
}


.img-earth {
	width: 50%;
	max-width: 300px;
	height: auto;
	display: block;
	margin: 20px auto;
	border-radius: 10px;
}


h1 {
	font-size: 32px;
	margin-bottom: 20px;
	color: white;
}

.content {
	padding: 20px;
	font-size: 18px;
}

p {
	margin: 10px 0;
	line-height: 1.6;
}

.connecting {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #000;
	color: #fff;
	text-align: center;
	padding: 10px 0;
	font-size: 16px;
}