body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0b0b0b;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
}

.converter {
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  max-width: 400px;
  width: 100%;
}

h1 {
  margin-bottom: 20px;
  color: #ffffff;
}

.input-group,
.output-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

input,
select,
button {
  margin: 10px 0;
  padding: 10px;
  font-size: 1em;
  border: 1px solid hsl(0, 0%, 80%);
  border-radius: 20px;
  width: 100%;
  box-sizing: border-box;
}

button {
  background-color: #d73808;
  color: white;
  cursor: pointer;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #a05a45;
}

#resultArea {
  margin-top: 20px;
  font-size: 1.2em;
  color:#fff;
}
label{
  color: #fff;
}
