@import url("https://fonts.googleapis.com/css2?family=Noto+Sans&family=Noto+Sans+SC&family=Noto+Serif&family=Noto+Serif+SC&display=swap");
.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-row-l {
  flex-direction: row;
  justify-content: space-between;
}

body {
  font-family: "Noto Serif", "Noto Serif SC", serif;
  color: #333;
}

h1 {
  font: 100% "Noto Sans", "Noto Sans SC", sans-serif, "Noto Sans", "Noto Sans SC", sans-serif;
  font-size: 3em;
}

a {
  color: #333333;
}

a:hover {
  color: black;
  text-decoration: underline;
}

#favorites a {
  color: #ffffff;
  text-decoration: underline;
  font: 100% "Noto Sans", "Noto Sans SC", sans-serif, "Noto Sans", "Noto Sans SC", sans-serif;
}
#favorites a :hover {
  color: black;
}

.decorate-font {
  font: 100% "Noto Sans", "Noto Sans SC", sans-serif, "Noto Sans", "Noto Sans SC", sans-serif;
}

.language-hljs {
  padding: 10px;
}

#CS {
  background-color: #ffc824;
}

#favorites {
  background-color: #086000;
  color: #fff;
}

.section-label {
  background-color: #000000;
  height: 10px;
  max-width: 100px;
}

section {
  padding: 30px 25px 40px 20px;
}

.post {
  margin: 0 auto;
  width: 900px;
}

img {
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 1400px) {
  .wide-only {
    display: none;
  }
}

.text-in-container {
  padding: 1rem 1rem 0 1rem;
  align-self: center;
}

.cdi-style {
  font-family: sans-serif;
  font-weight: 600;
  max-width: fit-content;
}

.top-links {
  max-width: fit-content;
  padding-right: 1em;
}

.link-padding {
  padding-left: 1em;
  padding-right: 1em;
}

.central-nav {
  max-width: 900px;
  margin: 0 auto;
  border-color: #e0e0e0;
}

.top-nav {
  display: flex;
  flex: auto;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
}

.occupy-screen {
  height: 100vh;
}

.site-footer {
  max-width: 900px;
  margin: 15px auto;
  border-color: #e0e0e0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.fit-content {
  max-width: fit-content;
}

.footer-links {
  margin-left: 1em;
  margin-right: 1em;
}