body {
  padding: 20vh 0 100px;
  background-color: #deefe5;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  overflow-y: auto;
  transition: padding var(--transition-speed) ease;
}

body.chat-active {
  padding: 20px 0 100px;
  justify-content: flex-start;
}

.title {
  position: fixed;
  top: calc(8% + 160px + 10px);
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  opacity: 1;
  transition: all var(--transition-speed) ease-in-out;
  width: 100%;
  pointer-events: none;
  margin: 0;
  z-index: 9999;
}

body.chat-active .title {
  top: 0;
  transform: translate(-50%, -100%);
  opacity: 0;
}
