body {
	font-family: Arial, sans-serif;
	background-color: #f4f4f4;
	margin: 0;
	padding: 20px;
	display: flex;
	align-items: center;
	flex-direction: column;
	min-height: 100vh;
}

h1 {
	color: #5d5c5c;
	text-align: center;
	margin-bottom:0px;
}

h3 {
	margin-bottom: 20px;
}

form {
	background-color: #f4f4f4;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 5px 5px 20px 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 600px;
	box-sizing: border-box;
	border: 1px solid #bebebe;
}

label {
	display: block;
	margin-bottom: 5px;
	color: #555;
}

input, select, textarea, button {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 16px;
}

button {
	background-color: #a0d5eb;
	color: #010101;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
	width: 30%;
}

button:hover {
	background-color: #b1c1fd;
}

textarea {
	resize: vertical;
	min-height: 100px;
}

input:invalid, select:invalid, textarea:invalid {
	border-color: #dc3545;
}

input:focus, select:focus, textarea:focus {
	border-color: #80bdff;
	outline: none;
}

#additional-questions div {
	margin-bottom: 15px;
}

@media (max-width: 600px) {
	body {
		padding: 10px;
	}

	form {
		padding: 15px;
	}

	input, select, textarea, button {
		font-size: 14px;
		padding: 8px;
	}
}

.hidden {
	display: none;
}

.navigation-buttons {
	display: flex;
	justify-content: space-between;
}

.error-message {
	color: red;
	margin-top: -10px;
	margin-bottom: 5px;
}

#thank-you-message {
	display: none;
	text-align: center;
	color: #0b912a;
	font-size: 1.2em;
	width: 300px;
	margin-top: 20px;
}

.polaroid {
	width: 30%;
	min-width: 300px;
	max-width: 500px;
	margin: 10px;
	padding: 10px 10px 40px;
	background-color: white;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	text-align: center;
	font-family: Arial, sans-serif;
}

.polaroid img {
	width: 100%;
}

.polaroid-text {
	margin-top: 10px;
	margin-bottom:-20px;
	color: #333;
}

footer {
	color: gray;
	text-align: center;
	padding: 10px 0;
	margin-top: 100px;
}

footer a{
	color:black
}
