* {
	margin:0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #fff;
	font-family: Arial,sans-serif;
}

.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 500%;
}

img {
	max-width: 100%;
	margin-bottom: 1rem;
}

.button {
	display: inline-block;
	padding: 1rem 2rem;
	background-color: #2a2a2a;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

.button:hover {
	background-color: #444;
}

.main-footer {
	background-color: #2a2a2a;
	color: #fff;
	padding: 1rem;
	position: absolute; /* changed to absolute */
	bottom: 40px; /* added a margin from the bottom */
	left: 0;
	right: 0;
}

.credits-footer {
	background-color: #000;
	color: #fff;
	padding: 1rem;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.footer-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.footer-container p {
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

.footer-container p:last-child {
	margin-bottom: 0;
	font-size: 0.8rem;
}