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

html,
body {
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #1E1F22;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo-container img {
	width: 160px;
	height: 160px;
	object-fit: contain;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 480px) {
	.logo-container img {
		width: 50vw;
		height: 50vw;
		max-width: 160px;
		max-height: 160px;
	}
}

@media (max-height: 400px) {
	.logo-container img {
		width: 50vh;
		height: 50vh;
		max-width: 160px;
		max-height: 160px;
	}
}