* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: #333;
  font-family: 'Roboto', sans-serif; 
  padding: 50px 0;
  text-align: center;
}

h1 {
  font-family: 'Roboto', sans-serif; 
  text-transform: uppercase;
  font-size: 2.5em;
  margin-bottom: 0.5em;
  color: #fff;
  letter-spacing: 2px;
}

p {
  font-size: 1.2em;
  margin-bottom: 1.5em;
  color: #eee;
}

/* Styling for form input */
input[type="text"] {
  height: 45px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 25px;
  width: 150px;
  margin-bottom: 1.5em;
  text-align: center;
  font-size: 1.1em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

input[type="text"]:focus {
  border: 1px solid #ff7e5f;
  outline: 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

select {
  height: 45px;
  padding: 10px;
  background-color: #ff7e5f;
  border: 1px solid #D1D1D1;
  border-radius: 25px;
  width: 220px;
  color: #fff;
  font-size: 1.1em;
  margin: 1em 0;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  appearance: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

select:hover {
  background-color: #feb47b;
  transform: translateY(-3px);
}

select:focus {
  outline: none;
  background-color: #feb47b;
}

button {
  display: inline-block;
  height: 45px;
  padding: 0 30px;
  color: #fff;
  background-color: #ff7e5f;
  border-radius: 25px;
  border: none;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

button:hover {
  background-color: #feb47b;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

#answer {
  margin-top: 2em;
  font-size: 1.5em;
}
