/* General styles */
body {
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}
.content {
	text-align: center;
	padding: 20px;
}
.content p {
	margin: 20px 0;
}
img {
	max-width: 100%;
	height: auto;
}
.hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
		
/* Footer styles */
#form-response {
    text-align: center;
    margin-top: 20px;
    color: #333;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer-links a {
    color: #FFD700; /* Gold color for links */
    margin: 0 15px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

footer p {
    margin-top: 10px;
    font-size: 14px;
}
