body {
  background-color: white;
  color: black;
  font-family: "Be Vietnam Pro", Verdana;
}

#top-bar {
  width: 100vw;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  user-select: none;
}

#tbtns {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}

.tbtn {
  height: 40px;
  background: #b3b3b3;
  color: white;
  font-family: "Be Vietnam Pro", Verdana;
  border: 1px solid transparent;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 10px;
  margin: 2.5px;
  user-select: none;
  cursor: pointer;
  transition: 0.2s;
} .tbtn:hover {
  background: #c5c5c5;
  border: 1px solid #b3b3b3;
  transition: 0.2s;
}

#content {
  width: 100vw;
  position: absolute;
  top: 50px;
  left: 0;
}

#logo {
  height: 40px;
  position: absolute;
  top: 5px;
  left: 5px;
}

p {
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  word-break: break-word;
  border-left: 3px solid #c647f5;
  box-sizing: border-box;
  padding: 3px;
  margin: 5px;
  margin-left: 0;
  transition: 0.3s;
} p:hover {
  border-left-width: 8px;
  transition: 0.3s;
}

.q {
  border-left-color: #477bf5;
} .q::before {
  content: "Q: ";
}

.a {
  border-left-color: #2ae327;
} .a::before {
  content: "A: ";
}