body {
  margin: 0;
  padding: 0;
  background: #000000;
  font-size: 30px;
  color: white;
}

.hidden {
  display: none !important;
}

.container {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-content: center;
  margin-top: 100px;
  text-align: center;
}

.animated {
  animation: left 0.80s infinite ease-in-out;
}

#elly {
  width: 300px;
  height: 300px;
}

#recognition-results {
  color: gray;
}

@-webkit-keyframes left {
  0% {
    -webkit-transform: translate(0px);
  }
  50% {
    -webkit-transform: translate(10px);
  }
  100% {
    -webkit-transform: translate(0px);
  }
}

@-moz-keyframes left {
  0% {
    -moz-transform: translate(0px);
  }
  50% {
    -moz-transform: translate(10px);
  }
  100% {
    -moz-transform: translate(0px);
  }
}

@keyframes left {
  0% {
    transform: translate(0px);
  }
  50% {
    transform: translate(10px);
  }
  100% {
    transform: translate(0px);
  }
}
