body {
	margin: 0;
	padding: 20px;
	font-family: "Montserrat", sans-serif;
	background-image: url("https://i.postimg.cc/05dKLt6R/pp30g8dk.png");
	background-repeat: no-repeat;
	background-size: cover;
}

.container {
	margin: 0 auto;
	margin-top: 50px;
	padding: 20px;
	max-width: 600px;
	background-color: #c3c3c3;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	opacity: 0.95;
}

h1 {
	margin-top: 0;
	margin-bottom: 20;
	text-align: center;
	font-size: 36px;
}

.form {
	display: flex; /*bring everything next to each other*/
	flex-direction: column; /*bring everything on top of each other*/
	align-content: center; /*bring everything to the center*/
}

label {
	margin-bottom: 10px;
	font-weight: bold;
}

input {
	padding: 8px;
	border: 1px solid #cccccc;
	border-radius: 5px;
	width: 100%;
	max-width: 300px;
}

button {
	margin-top: 10px;
	background-color: #007bff;
	color: #ffffff;
	border: none;
	border-radius: 5px;
	padding: 10px 20px;
	transition: background-color .3s ease;
	cursor: pointer;
}

button:hover {
	background-color: #0062cc;
}

#result {
	margin-top: 20px;
	font-size: 24px;
	font-weight: bold;
}