body {
	background-image:url(images/title.png), url(images/munny.png);
	background-repeat: no-repeat, no-repeat;
	background-size: auto 100%, auto 100%;
	height: 100vh;
	background-position: center, center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	font-family: sans-serif;
}
.toasterboy {
	background:url(images/toasterboy.png) no-repeat center;
	background-size:contain;
	width: 100%;
	max-width: 300px;
	height:365px;
}
a:hover, input:hover, button:hover, *:hover, button:hover {
	transition:all .1s linear;  
}
.form {
	background: #fff;
	border: #000 5px solid;
	padding:30px 50px;
	text-align: center;
	box-shadow: 0px 0px 5px 0px rgba(255,255,255,1);
	border-radius: 20px;
	max-width: 500px;
}
.hidden {
  display: none;
}
#response {
  display: none; /* Hidden by default */
  margin-top: 20px;
  border: 1px #333 solid;
  padding: 20px;
  font-size: 36px;
  font-weight: bold;
  background: #eee;
  text-align: center;
}
p {
	line-height: 28px;
}
form {
	display: flex;
	flex-direction: column;
	text-align: left;
	align-items: center
}
form div {
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center
}
div.2col {
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 8px
	
}
label {
	font-size: 12px;
	display: block;
	margin: 0 0 5px;
	width: 100px;
	text-align:right
}
input, select {
	margin: 0 0 10px;
	padding: 8px;
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #eee;
	box-sizing: border-box
}
input:hover {
	background: #ffc
}
input:focus {
	background: #fff;	
}
button[type="submit"] {
	background: #000;
	color: #fff;
	padding: 20px;
	font-size: 20px;
	width: 100%;
	border-radius:8px;
	border: 0;
}
button[type="submit"]:hover {
	background: #f00;
	color: #fff;
}
@media screen and (max-width: 900px) {
body {
	background-image:url(images/title.png), url(images/munny.png);
	background-repeat: no-repeat, no-repeat;
	background-size: 100% 100%, auto 100%;
	height: 100vh;
	background-position: center, center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center
}	
.form {
	padding: 20px 10px 0px;
	margin: 10px;
}
}