body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  flex-direction: column;
}

#container {
z-index: 1;
    text-align: center;
    top: 50px;
    position: absolute;
    height: 100%;
}

#response {
color: #FFF;
    text-align: center;
    font-family: "lato", sans-serif;
    font-weight: 300;
    font-size: 30px;
    letter-spacing: 2.5px;
    max-width: 750px;
    margin: 50px 0px 50px 0;
    animation: fadeIn 1s ease-in-out;
    word-wrap: break-word;
    height: 30vh;
    overflow: auto;
}

#userInput {
  resize: none;
      padding: 10px 20px;
    border: 3px solid #dcffff;
    border-radius: 4px;
    background-color: #11161f82;
    color: #ebfeff;
    font-size: 16px;
    cursor: text;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.animated-text {
  display: inline-block;
  opacity: 0;
  animation: fadeInText 0.5s ease-in-out forwards;
}

@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}