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

body {
  background-color: #adf0f7;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background-color: #23235b;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 24px;
  border-radius: 8px;
  width: 350px;
  max-width: 100%;
}
.container header {
  text-align: center;
  margin-bottom: 20px;
}
.container .result-container {
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  padding: 12px 10px;
  margin-bottom: 20px;
  position: relative;
  height: 50px;
}
.container .result-container .btn {
  border: none;
  background-color: #3b3b98;
  color: #fff;
  font-size: 20px;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container .result-container .btn:hover {
  background-color: rgb(76.345971564, 76.345971564, 185.654028436);
}
.container .btn {
  border: none;
  background-color: #3b3b98;
  color: #fff;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.container .btn:hover {
  background-color: rgb(76.345971564, 76.345971564, 185.654028436);
}
.container .btn.btn-large {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  font-size: 18px;
}
.container .settings .setting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}/*# sourceMappingURL=style.css.map */