@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");

:root {
  --chat-background: hsl(225, 7%, 7%);
  --chat-color: hsl(225, 7%, 90%);
  --chat-saturation: 90%;
  --chat-lightness: 75%;
  --chat-background-alpha: 0.3;
}

@media (prefers-color-scheme: light) {
  :root {
    --chat-background: hsl(225, 7%, 99%);
    --chat-color: hsl(225, 7%, 10%);
    --chat-saturation: 70%;
    --chat-lightness: 50%;
    --chat-background-alpha: 0.2;
  }
}

.chat-container {
  margin: 32px auto;
  width: 100%;
  max-width: 24rem;
  height: 12rem;
  overflow: hidden;
  overflow-anchor: none;

  background: var(--chat-background);
  color: var(--chat-color);
  border-radius: 8px;
  outline: 2px solid #444;
  box-shadow: 0 0 8px #0004;

  user-select: none;

  font-family: "Space Grotesk", Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
}

@media only screen and (min-width: 768px) {
  .chat-container {
    font-size: 1.25vw;
    height: 16vw;
    max-width: 36vw;
  }
}

.chat {
  padding: 12px;
  height: 100%;
  /* overflow-y: scroll; */

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
}

.message {
  margin-bottom: 2px;
}

.username {
  font-weight: 600;
  margin-right: 5px;
  padding: 0 4px;
  border-radius: 4px;
}

.typing {
  transition: background-color 0.3s ease;
}

/* .text {} */
