.img {
	text-align: center;
}

form {
	margin-bottom: 20px;
	background-color: burlywood;
	border: 2px solid green;
	padding: 8px;
	width: 100%;
}

select {
	background-color: #4CAF50;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
  }

label {
	display: block;
	margin-bottom: 5px;
}

input, textarea {
	padding: 5px;
	font-size: 16px;
	border: 2px solid green;
	border-radius: 5px;
	width: 100%;
	box-sizing: border-box;
}

input[type="submit"] {
	background-color: #4CAF50;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

input[type="submit"]:hover {
	background-color: #45a049;
}

button {
	background-color: #4CAF50;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
  }
  
  button:hover {
	background-color: #45a049;
  }
  

  header {
	height: 50%;
	text-align: center;
  }
  
  header img {
	max-width: 100%;
	max-height: 100%;
  }

  h1 {
	color:blue;
	text-align: center;
  }

  body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: url("Cerralba.jpg");
	background-repeat: no-repeat;
	background-size: cover;
  }

  