html {
	background-image: url("../images/background.jpg");
	background-size: cover; /* Or 'contain' depending on your preference */
	background-repeat: no-repeat; /* Prevent the image from tiling */
	background-attachment: fixed;
}
/*hey hey hey This is ScottA*/
/* General styles */
body {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100vh;
	margin: 0;
	font-family: Arial, sans-serif;
	color: #04aa6d;
	font-size: 15px;
}

.form-container {
	background-color: rgb(38, 78, 152);
	border-radius: 15px;
	color: green;
	padding: 20px;
	box-shadow:
		0 8px 16px rgba(0, 0, 0, 0.2),
		0 6px 20px rgba(0, 0, 0, 0.19);
	width: 90%;
	max-width: 600px;
	text-align: center;
}

.form-container h1 {
	margin-bottom: 20px;
	color: white;
}

form {
	background-color: #f5f5f5;
	padding: 20px;
	border-radius: 10px;
	box-shadow:
		0 8px 16px rgba(0, 0, 0, 0.2),
		0 6px 20px rgba(0, 0, 0, 0.19);
}

form label {
	display: block;
	font-size: 1rem;
	margin-bottom: 5px;
}

form input[type="email"],
form input[type="text"],
form input[type="password"],
form input[type="date"],
form select {
	text-align: center;
	width: 90%;
	padding: 10px;
	margin-bottom: 15px;
	border: 2px solid #ccc;
	border-radius: 5px;
	font-size: 1rem;
}

form input[type="email"],
form input[type="date"],
form input[type="role"],
form input[type="gender"] {
	text-align: center;
}

div.scott-button-home,
div.scott-button-submit {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 1rem 2rem 1rem 2rem;
}

div.scott-button-submit button,
div.print-to-screen button {
	background-color: rgb(38, 78, 152);
	color: white;
	padding: 1rem 2rem 1rem 2rem;
	font-size: 1rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	min-width: 10rem;
	max-width: 10rem;
	text-decoration: none;
	margin: 1rem;
}

div.scott-button-home a {
	text-decoration: none;
	background-color: rgb(38, 78, 152);
	color: white;
	padding: 1rem 2rem 1rem 2rem;
	font-size: 1rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	min-width: 10rem;
	max-width: 10rem;
}

.scott-button button:hover {
	background-color: rgb(82, 164, 82);
}

.scott-button button a {
	text-decoration: none;
	color: white;
}
div#results {
	display: block;
	margin: 2rem;
	border: solid 5px red;
	background-color: white;
	color: red;
	padding: 2rem;
	border: solid 5px red;
}

div#results p {
	color: red;
}

/* Ensure form-container is centered and responsive */
@media (max-width: 600px) {
	.form-container {
		padding: 15px;
	}

	form input[type="email"],
	form input[type="text"],
	form input[type="password"],
	form input[type="date"],
	form select {
		font-size: 0.9rem;
	}

	div.form-container for div h2 {
		word-wrap: break-word;
	}

	.scott-button button {
		font-size: 0.9rem;
		border: solid 5px red;
	}
}
