body {
	background-color: #333; 
	color: black; 
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	margin: 0;
	padding: 0;
	height: 100%;
	background-image: url('https://konnekt.sorthos.com/RaceCondition/static/images/Falkor_Logo.jpeg'); 
	background-size: contain; 
	background-position: center; 
	background-repeat: no-repeat; 
	background-attachment: fixed; 
	background-blend-mode: lighten;
	height: 100vh; 
}
.center {
	margin-left: auto;
	margin-right: auto;
}

h1 {
	font-size: 36px;
	margin-top: 30px;
	position: relative;
	z-index: 10;
}

.container {
	margin-top: 150px;
	justify-content: center;
	z-index: 10;
	padding: 30px;
	background-color: rgba(211, 211, 211, 0.8); 
	border-radius: 15px; 
	display: inline-block; 
	width:70%;
}

input {
	padding: 10px;
	font-size: 18px;
	text-align: center;
	margin-bottom: 20px;
	width: 250px;
	background-color: #555;
	border: 1px solid #ccc;
	color: black;
}

button {
	padding: 10px 20px;
	font-size: 18px;
	border-radius: 15px;
	background-color: #ADD8E6;
	color: black;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

button:hover {
	background-color: green;
}