body {
  background-color: #f4f1e9;
  font-family: 'Courier New', Courier, monospace;
  color: #3e2c1c;
  text-align: center;
  margin: 0;
  padding: 0;
}

.container {
  margin-top: 50px;
}

h1 {
  font-size: 36px;
  color: #5e3b1e;
  text-shadow: 1px 1px #d3c6a4;
  margin-bottom: 5px;
}

p {
  font-size: 18px;
  color: #6d4f3c;
  margin-bottom: 40px;
}

form {
  display: inline-block;
  background-color: #fffaf3;
  border: 2px solid #bfa87f;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 4px 4px 0px #c9b280;
}

input, select, button {
  margin: 12px;
  padding: 10px 15px;
  width: 250px;
  border: 2px solid #bfa87f;
  background-color: #f9f5e7;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  border-radius: 4px;
  color: #3e2c1c;
}

button {
  background-color: #a34a28;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #84391e;
}