* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  color: #fff;
}

a:hover {
  font-size: 17px;
}

#grumpy {
  animation: userShake 1s ease infinite;
}

@keyframes userShake {
  50% {
    transform: rotate(5deg);
  }
}
@media (max-height: 900px) {
  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
  }
  #chatContainer {
    display: flex;
    flex-direction: column;
    justify-content: start;
  }
}
@media (max-width: 768px) {
  .hints h5 {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */