/*Color palette*/
:root {
  --background-color: white;
  --foreground-color: rgba(226, 226, 226, 0.6);
  --text-color: black;
  --accent-color: rgb(159, 117, 232);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-color: black;
    --foreground-color: rgba(59, 59, 59, 0.6);
    --text-color: rgb(240, 240, 240);
    --accent-color: rgb(90, 20, 209);
  }
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  min-height: 100vh;

  background: var(--background-color);
  color: var(--text-color);
  font-family: Comfortaa, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  user-select: none;
  -webkit-user-select: none;
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  border: none;
  border-radius: 1rem;
  background: var(--foreground-color);
  font-family: Comfortaa, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: medium;
  color: var(--text-color);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  backdrop-filter: blur(2rem) saturate(150%);
}
button:hover:not(:disabled), .avatar:hover {
  transform: scale(1.1);
}
button:active, .avatar:active {
  transform: scale(1.05);
}

a {
  text-decoration: none;
}
