body {
	font-family: "Lato", Arial, sans-serif;
	line-height: 1.6;
	color: #e4e4e4;
	max-width: 800px;
	margin: 0 auto;
	min-height: 100vh;
	padding: 2rem;
	background: url('background.jpg') no-repeat top center fixed; 
	background-color: #172C37;
	background-size: cover;
	position: relative;
}

body::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: -1;
}

header {
	text-align: center;
	margin-bottom: 2rem;
}

img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin-top: 1rem;
}

h1 {
	margin-bottom: 0.5rem;
	font-size: 2.5rem;
	letter-spacing: 1px;
}

h2 {
	margin-top: 0;
	color: #bbb;
	font-size: 1.2rem;
	font-weight: 400;
}

p {
	text-align: justify;
	margin-bottom: 1rem;
}

.platforms {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.platforms a {
	padding: 12px 24px;
	color: #e4e4e4;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.platforms a img {
	display: block;
	margin: 0.5rem auto 0.75rem;
	width: 2.5rem;
	height: auto;
}

.platforms a:hover {
	background-color: rgba(44, 142, 179, 0.3);
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.platforms a:active {
	transform: translateY(-1px);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

footer p {
	text-align: center;
	margin-top: 2rem;
	color: #555;
}

@media (min-width: 800px) {
	body {
		font-size: 18px;
		padding: 4rem;
		top: 4rem;
		min-height: 0;
	}

	.platforms {
		margin-top: 3rem;
	}
}