*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #bc6c25;
  color: #fefae0;
}

main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

main h1 {
  font-size: 60px;
  letter-spacing: 5px;
  font-weight: bolder;
  margin-bottom: 20px;
  text-align: center;
}

main section input {
  display: block;
  width: 50%;
  margin: 0 auto;
  border: none;
  border-radius: 5px;
  color: #fefae0;
  background-color: #dda15e;
  padding: 10px;
  font-size: 16px;
}

main section button {
  width: 120px;
  height: 40px;
  margin: 20px auto;
  background-color: #dda15e;
  color: #fefae0;
  border: none;
  border-radius: 4px;
  padding: 5px;
  display: block;
  transition: all 0.5s ease;
}

main section button:hover {
  background-color: #fefae0;
  color: #bc6c25;
}

main h2 {
  font-size: 30px;
  color: #fefae0;
  font-weight: bolder;
  text-align: center;
  letter-spacing: 4px;
}
