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

body {
  /* background-color: aqua; */
  height: 100vh;
  /* height: 100%; */

  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.container {
  background-image: url("images/nobitahome.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;

  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-blend-mode: darken;
}

.light {
  filter: brightness(100%);
}

.dark {
  filter: brightness(50%);

  animation: fadeIn 7s;
  -webkit-animation: fadeIn 7s;
  -moz-animation: fadeIn 7s;
  -o-animation: fadeIn 7s;
  -ms-animation: fadeIn 7s;
}

.botbody {
  /* flex-grow: 1; */
  /* justify-self: center;
    align-self: center; */
  /* background-color: red; */

  /* background-image: url('images/doraemonT.png'); */

  /* background-repeat: no-repeat; */
  background-size: auto;
  background-position: center;
  display: flex;
  /* flex-direction: column;
    align-items: center;
    justify-content: center; */
  justify-content: center;
  align-items: center;
  /* margin-top: 50px; */
}

.doraImage {
  width: 250px;
  /* margin-top: 100px; */
}

.appear {
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.goodbye {
  animation: fadeOut 15s;
  -webkit-animation: fadeOut 15s;
  -moz-animation: fad eOut 15s;
  -o-animation: fadeOut 15s;
  -ms-animation: fadeOut 15s;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#output {
  max-width: 500px;
  /* background-color: aliceblue; */
  align-self: center;
  /* margin-top: 50px; */
  padding-left: 1rem;
  font-size: 1.3rem;
  margin-top: 10px;
}

.interact {
  display: flex;
  flex-direction: column;
}

.hidden {
  display: none;
}

.interact {
  margin-top: 10px;
}

.listenMessage {
  color: red;
}

.voiceIcon {
  align-self: center;
  width: 50px;
  background-color: rgb(137, 206, 206);
  border-radius: 10px;
  cursor: pointer;
}

.voiceIcon:hover {
  background-color: rgb(190, 227, 234);
}

.saySomething {
  background-color: red;
}
