body{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.block{
  margin-top: 15px;
  background-image: url(https://image.ibb.co/h7c9Tz/bull_47524_640.png);
  width: 250px;
  height: 332px;
  background-size: cover;
  background-position: 50%  50%;
  position: relative;
}
.left_eye,
.right_eye{
  width: 15px;
  height: 15px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;  
  transition: all 0.5s;
}
.left_eye{
  left: 88px;
  top: 123px;
}
.right_eye{
  left: 147px;
  top: 123px;
}
.block.active .left_eye{
  top: 138px;
}

.block.active .right_eye{
  top: 138px;
}

.message{
  opacity: 0;
  font-family: roboto;
  font-weight: bold;
  padding: 10px 15px;
  width: max-content;
  border: 2px solid;
  border-radius: 10px 10px 10px 0;
  background-color: #ccc;
  position: absolute;
  left: 100%;
  transition: all 0.5s;
}
.message.view{
  opacity: 1;
}
.textarea{
  width: 250px;
  margin-top: 20px;
  height: 70px;
  padding: 7px 10px;
  box-sizing: border-box;
  border: 1px solid;
  outline: none;
  -moz-appearance: none;
  resize: none;
  border-radius: 10px;
}
.textarea:focus{
/*   border: none; */
  box-shadow: none;
}