html {
  font-size: 10px;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: url("https://i.pinimg.com/originals/3f/81/0b/3f810b1005ca9177f479f51334f31cbe.jpg");
  background-size: cover;
  background-position: bottom;
  padding: 50px;
}

.BMO {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 750px;
  background: rgba(80, 188, 156);
  border: solid 5px black;
  border-radius: 50px;
}

.BMO span {
  position: absolute;
  font-size: 100px;
  font-family: Arial, Helvetica, sans-serif;
  transform: rotate(90deg) scale(1, 1.3);
  left: -38%;
  top: 40%;
  font-weight: 900;
}

.BMO::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -25%;
  width: 100%;
  height: 101.3%;
  border: solid 5px black;
  border-radius: 50px;
  background: rgba(78, 153, 132);
  z-index: -5;
}

.BMO .screen {
  position: relative;
  background: rgba(198, 252, 216);
  border: solid 5px black;
  border-radius: 50px;
  width: 400px;
  height: 325px;
}

.BMO .screen .eyes-container {
  position: absolute;
  display: flex;
  width: 100%;
  top: 30%;
}

.BMO .screen .eyes-container .eye-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.BMO .screen .eyes-container .eye-container .eye {
  width: 20px;
  height: 30px;
  border-radius: 50px;
  background: black;
}

.BMO .screen .mouth-container {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  top: 50%;
}

.BMO .screen .mouth-container .mouth {
  border: solid 2px black;
  width: 100px;
  height: 10px;
  transform: translate(0, -50%);
  border-radius: 20px;
  background: black;
}

.BMO .screen .mouth-container .mouth.talking {
  animation: animate 0.1s linear infinite;
}
@keyframes animate {
  0%,
  100% {
    height: 10px;
  }
  50% {
    height: 50px;
  }
}

.BMO .bottom-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 325px;
}

.BMO .bottom-panel select {
  width: 100%;
  background: rgba(40, 52, 40);
  font-size: 30px;
  color: rgba(198, 252, 216);
  border-radius: 20px;
  padding: 5px;
  border: solid 5px rgba(0, 33, 18);
  margin-bottom: 20px;
}

.BMO .bottom-panel textarea {
  resize: none;
  width: 100%;
  height: 200px;
  background: rgba(198, 252, 216);
  font-size: 30px;
  border-radius: 20px;
  padding: 20px;
  border: solid 5px rgba(0, 33, 18);
}

.BMO .buttons {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.BMO .buttons button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 25px;
  cursor: pointer;
  background: rgba(255, 0, 0);
  color: white;
  font-size: 2rem;
  border: none;
}

.BMO .buttons button::before {
  content: " ";
  position: absolute;
  top: 5px;
  left: 0;
  height: 50px;
  width: 50px;
  border-radius: 25px;
  z-index: -1;
  background: rgba(128, 0, 0);
}

.BMO .buttons button:active {
  top: 5px;
}

.BMO .buttons button:active::before {
  top: 0;
}
