@import "catppuccin.css";

/* Override bear's colors */
:root {
  --background-color: var(--bg);
  --heading-color: var(--text);
  --text-color: var(--text);
  --link-color: var(--blue);
  --visited-color: var(--lavender);
  --blockquote-color: var(--text);

  /* dark-mode only for code (adjust in the future) */
  --code-background-color: #313244; /* mocha surface */
  --code-color: #cdd6f4; /* mocha text */
}

a {
  text-decoration: underline;
}
.title {
  text-decoration: none;
}

#site-avatar {
  width: 3em;
  height: 3em;
  border-radius: 50%;
  margin-right: 1em;
  border: 2px solid var(--surface);
}

#theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-left: auto;
}

#title-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
}
