uix-article {
  height: unset !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg_darker);
}
uix-article #articleHeaderContainer {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 1000px;
}
@media screen and (max-width: 700px) {
  uix-article #articleHeaderContainer {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 650px) {
  uix-article #articleHeaderContainer h1 {
    font-size: 40px;
  }
}
uix-article #articleTag {
  font-size: x-large;
}
uix-article #articleHeader {
  line-height: 100%;
  font-size: xxx-large;
  font-weight: bold;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 8px;
  font-family: sans-serif;
  color: var(--text_accent_1);
}
uix-article #articleDescription {
  font-size: large;
  color: var(--text-light);
  font-family: sans-serif;
}
uix-article #articleImage {
  align-self: center;
  position: relative;
  width: 100%;
  border-radius: 8px;
  margin-top: 20px;
  z-index: 2;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-bottom: 30px;
}
uix-article #articleImage img {
  max-height: 40vh;
  object-fit: cover;
}
uix-article .rainbow-text {
  background: -webkit-linear-gradient(-70deg, #8250df 0%, #d42a32 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-box-decoration-break: clone;
}
uix-article #markdownViewer {
  margin-top: -60px;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
