main{
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
   background: linear-gradient(to bottom, #555, #000);
}

.container{
  display: flex;
  flex-direction: column;
  background: rgb(56, 53, 43);
  width: 400px;
  height: 600px;
  align-items: center;
  justify-content: space-evenly;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  padding: 20px;
}

.title{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font: bold 2.5rem serif;
  border-bottom: solid 4px black;
  margin-bottom: 10px;
}

.input {
  display: flex;
  width: 300px;
  height: 50px;
  justify-content: space-between;
  align-items: center;
}

.input input {
  width: 200px;
  height: 50px;
  border-radius: 10px;
  border: none;
  outline: 0;
  font: bold 1.4rem serif;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.input label {
  font: bold 1.4rem serif;
}

button{
  width: 300px;
  height: 45px;
  font: bold 1.2rem serif;
  background: #000;
  color: rgb(184, 142, 212);
  outline: none;
  border-radius: 10px;
  cursor: pointer;
  transition: .2s;
}

button:hover{
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.result{
  display: flex;
  margin-top: 10px;
  align-items: center;
  width: 300px;
  height: 150px;
  border-radius: 10px;
  font: italic 1.5rem serif;
  box-shadow: 0px 0px 15px black;
  background: #000;
  color: rgb(184, 142, 212);
  padding: 20px;
  box-sizing: border-box;
  user-select: none;
}
