@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
}
body {
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 350px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-family: "Roboto", sans-serif;
}

h1 {
  margin-bottom: 20px;
}

input {
  padding: 10px;
  width: 73%;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.Converter {
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background: #0056b3;
  transition: 0.2s;
}

#result {
  margin-top: 20px;
  font-size: 18px;
  color: #333;
}

@media (max-width: 838px) {
  .container {
    flex-direction: column;
    width: 363px;
  }

  .Converter {
    margin-top: 10px;
  }
  input {
    width: 69%;
  }
}
