html {
	margin: 0;
	padding: 0;
	background-color: #000;
	font-family: Tahoma, sans-serif;
	color: #fff;
}

body {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	box-sizing: border-box;
	padding: 60px;
}

.main-content {
	display: grid;
	grid-template-columns: 50% 50%;
	max-width: 1920px;
	margin: 0 auto;
	width: 100%;
}

main {
	grid-column: 1 / 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

aside {
	grid-column: 2 / 3;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

h1 {
	font-size: 4rem;
	font-weight: 700;
	margin: 0 0 auto;
	text-align: left; /* Ensure h1 is left-aligned */
}

.explanation {
	margin-bottom: auto;
}

h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin: 0;
	line-height: 100%;
	letter-spacing: .03em;
	text-transform: uppercase;
}

button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	padding: 0;
	margin: 0;
	font-size: inherit;
	font-family: inherit;
	cursor: pointer;
}

a {
	text-decoration: none;
	transition: background-color 0.3s ease;
}

a:hover {
	background-color: #146cb6;
}

.round-button {
	width: 4rem;
	height: 4rem;
	display: flex;
	padding: 1rem .9rem;
	box-sizing: border-box;
	border-radius: 60px;
	background-color: #fff;
	transition: transform 0.3s ease;
}

.round-button:hover {
	transform: scale(1.1);
}

.round-button img {
	max-width: 100%;
}

.button-container {
	display: flex;
	gap: 1.2rem;
	margin-top: 2.7rem;
}

.text-button {
	background-color: #fff;
	border-radius: 60px;
	color: #000;
	padding: 0 1.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: 400;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.text-button:hover {
	background-color: #146cb6;
	color: #fff;
}

footer {
	font-size: 1.5rem;
	font-weight: 400;
	margin-top: auto;
	max-width: 636px;
}

/* Mobile and Small Screens */
@media (max-width: 768px) {
	body {
		padding: 12px;
		height: inherit;
		justify-content: inherit;
		align-items: inherit;
	}

	.main-content {
		grid-template-columns: 100%; /* Single column layout */
		grid-template-rows: auto auto; /* Stack h1 and aside */
		gap: 20px; /* Add spacing between h1 and aside */
	}

	main {
		grid-column: 1;
		grid-row: 2; /* Move main content below the image */
		order: 2;
	}

	aside {
		grid-column: 1;
		grid-row: 1; /* Move image to the top */
		order: 1;
		display: flex;
		justify-content: center;
		align-items: center;
		max-width: 250px;
		max-height: 250px;
		margin: 0 auto;
	}

	h1 {
		font-size: 3rem;
		position: static; /* Remove absolute positioning */
		text-align: left; /* Ensure h1 is left-aligned on mobile */
		margin-bottom: 20px; /* Add spacing below h1 */
	}

	h2 {
		font-size: 2rem;
	}

	.round-button {
		width: 3.5rem;
		height: 3.5rem;
		padding: 0.8rem;
	}

	.button-container {
		margin-bottom: 30px;
		justify-content: space-between;
		gap: 1rem;
	}

	.text-button {
		font-size: 1.5rem;
		padding: 0 1.5rem;
	}

	.text-button img {
		max-width: 1.5rem;
	}

	footer {
		font-size: 1.2rem;
	}

	.main-content {
		position: relative;
		padding-top: 10vw;
	}
}

/* Large Screens */
@media (min-width: 1920px) {
	h1 {
		font-size: 5rem;
	}

	h2 {
		font-size: 3.5rem;
	}

	footer {
		font-size: 2rem;
	}

	.button-container {
		justify-content: flex-start;
		gap: 2rem;
		margin-top: 2rem;
	}

	.text-button {
		font-size: 2rem;
		padding: 0 2rem;
	}

	.round-button {
		max-width: 5rem;
		max-height: 5rem;
	}
}