*{
  margin: 0;
}
body{
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin: 0;
  overflow: hidden;
}
.container{
  background-color: bisque;
  padding: 20px;
  width: 500px;
  max-width: 100%;
   box-shadow: 2px 2px 15px 1px rgba(134, 6, 6, 0.2);

}
.container > h2{
  margin: 10px 20px;
  text-align: center;
}
.result__container{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  background-color: antiquewhite;
  padding: 10px;
  height: 50px;
  width: 100%;

}
.result__container > .result {
  flex: .9;
} 
.result__container > .btn{
  flex: .1;
  border: none;
  font-size: 20px;
  height: 40px;
  background-color: rgb(230, 243, 230);
  cursor: pointer;
  outline: none;
}
.generate{
  margin: 20px 0;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  outline-style: none;
  cursor: pointer;
  font-size: large;
  transition: ease-in-out 3s;
}
.generate:hover{
  background-color: rgb(226, 203, 172);
}