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;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	margin: 0;

	font-family: Arial, sans-serif;
	color: white;
	text-align: center;
}
h3 {
	display: inline;
	color: light-red;
}
div.container form button.scott-button {
	width: 100%;
	background-color: rgb(83, 109, 158);
	color: white;
	font-size: 1rem;
	padding: 0.75rem;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	margin-top: 1rem;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

div.container form button.scott-button:hover {
	background-color: rgb(38, 78, 152);
	transform: translateY(-2px);
}

div.container form button.scott-button:active {
	transform: translateY(0);
}
.container {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
	background-color: rgb(38, 78, 152);
	border-radius: 15px;
	padding: 2rem;
	max-width: 90%;
	width: 600px;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}

h2 {
	font-size: 1.5rem;
	margin: 0.5rem 0;
}

.container div button {
	margin-top: 1.5rem;
	cursor: pointer;
	display: block;
	margin: 10px 0;
	padding: 15px;
	background-color: rgb(83, 109, 158);
	border: none;
	border-radius: 5px;
	font-size: 1.2rem;
	color: white;
	text-decoration: none;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
	transition: background-color 0.3s ease, transform 0.2s ease;
	min-width: 100%;
}
