html {
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  html, body {
    background-color: white;
    color: black;
  }
}

article *{
  white-space: pre-wrap;
}

input,
button {
  outline: none !important;
}

input:focus,
button:focus {
  outline: none !important;
}

input::placeholder,
textarea::placeholder {
  font-size: 15px;
  font-weight: 300;
}

h2::before {
  content: "";
  position: absolute;
  top: -26px;
  width: 56px;
  height: 6px;
  background: linear-gradient(
    90deg,
    #9128b1 25%,
    #ac66c8 25%,
    #ac66c8 50%,
    #bf91d8 50%,
    #bf91d8 75%,
    #cdafe3 75%,
    #cdafe3 100%,
    #cdafe3 100%
  );
}

article h2::before {
  display: none;
}

button {
  transition: 0.125s;
}

button:hover {
  filter: brightness(110%);
}

.notifications > div{
  z-index: 120;
}
