
body {
  font-family: Arial, sans-serif;
  background: #48abee;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  
}

.container {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

input {
  padding: 10px;
  width: 200px;
  margin-bottom: 10px;
  border-radius: 6px;
}

button {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#convertBtn {
  background: linear-gradient(to right, rgb(233, 166, 42), rgb(212, 44, 72));
  color: white;
}

#copyBtn {
  background-color: #007bff;
  color: white;
}

#resetBtn {
  background-color: #ccc;
}
#output{
    font-weight: bold;
    padding: 7px;
}
