* {
  font-family: Courier;
}
.container {
  width: 300px;
  border: 4px solid #b59b87;
  border-radius: 30px;
  padding: 20px;
}
.title {
  font-weight: 600;
  font-size: 20px;
  font-family: Courier;
  color: #ffaf8a;
}
.result {
  margin-top: 16px;
  background: #ffaf8a;
  height: 100px;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  font-size: 40px;
  color: #ffffff;
  font-weight: 600;
}
.result:after {
  content: ' ';
  position: absolute;
  width: 96%;
  right: 2%;
  bottom: 10px;
  border-radius: 20px;
  height: 100px;
  z-index: -1;
  -moz-box-shadow: 0px 20px 0px #feefe7;
  -webkit-box-shadow: 0px 20px 0px #feefe7;
  box-shadow: 0px 20px 0px #feefe7;
}

.tool {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}
.tool__button {
  background-color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  height: auto;
  aspect-ratio: 1/1;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
  font-size: 20px;
  color: #7a7a7a;
  border: 1px solid #feefe7;
}
.tool__button:active {
  background-color: #feefe7;
}
.large__button {
  width: 50%;
  aspect-ratio: 2/1;
}
