@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #845460;
  color: #ffffff;
  margin:0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}
h2{
  margin: 10px 0 20px;
  font-size: 2rem;
  text-align: center;
}
.container{
  background-color: #7b113a;
  box-shadow: 0 2px 10px rgba(255,255,255,0.2);
  padding: 30px;
  border-radius: 10px;
  width: 400px;
  max-width: 100%;
}
.result-container{
  background-color: black;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  font-size: 1.5rem;
  letter-spacing: 1px;
  padding: 1rem;
  height: 50px;
  width: 100%;
}
.result-container #result{
  word-wrap: break-word;
  max-width: calc(100%-40px);
}
.btn{
  border: none;
  background-color: #845460;
  color: white;
  font-size: 1.5rem;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
}
.result-container .btn{
  position: absolute;
  right: 5px;
}
.btn-large{
  display: block;
  width: 100%;
}
.setting{
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px;
}
