* {
  padding: 0;
  margin: 0;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f4e4ba;
}
#header {
  text-align: center;
  font-family: Arial, sans-serif;
}
.container {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  height: 60vh;
  width: 48vh;
}
form {
  margin: 1.5rem;
}
form select,
button,
input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 0.78rem;
}
form input {
  border: 1px solid lightgray;
  font-size: 1rem;
  height: 2rem;
  padding-left: 0.5rem;
}
.dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.dropdown i {
  font-size: 1rem;
  margin-top: 1rem;
}
.select-container img {
  max-width: 2rem;
}
.select-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  border: 1px solid lightgray;
  border-radius: 0.5rem;
}
.select-container select {
  font-size: 1rem;
  width: auto;
}
button {
  height: 3rem;
  font-size: 1.5rem;
  margin-top: 4rem;
  background-color: #af4d98;
  color: white;
  font-family: "Times New Roman";
}
#result {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 16px;
  width: auto;
  border: 1px solid transparent;
  font-family: Arial, sans-serif;
  color: #999999;
}
