/* Shared*/
@font-face {
  font-family: "Archivo";
  src: url("fonts/Archivo/ttf/Archivo-Regular.woff2") format("woff2");
  font-display: block;
}

html,
body {
  font-family: "Archivo";
  min-height: 100%;
  background: #0a2540;
  color: #333333;
  margin: 0;
  padding: 0;
}

* {
  color: white;
}

q {
  font-style: italic;
  margin-top: 12px;
  margin-bottom: 12px;
  display: block;
  border-left: 4px solid gray;
  padding-left: 6px;
  line-height: 1.4;
}

li {
  line-height: 1.4;
}

body {
  display: flex;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
}

p {
  line-height: 1.8;
}

#body-content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 850px;
  width: 100%;
  background: #0a2540;
}

#menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

#menu ul {
  list-style-type: none;
}

#menu li {
  margin-bottom: 0.7em;
}

#content {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  flex: 1;
}

#content li {
  margin-bottom: 0.7em;
}

#content ul {
  margin-top: 0.7em;
}

#menu-link-container {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 12px;
}

.menu-link {
  margin-bottom: 12px;
  margin-left: 8px;
  margin-right: 8px;
}

#header-cursor-blink {
  margin-left: 4px;
  animation-name: blink;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  opacity: 1;
}

@keyframes blink {

  from,
  to {
    color: transparent;
  }

  50% {
    color: unset;
  }
}

.writing-link {
  font-weight: 500;
  font-size: 18px;
}

/* Cool Reading Tab*/

.cool-reading-li-link {
  font-weight: bold;
  font-size: 18px;
  color: wheat;
}

/* Writing Tab */

.writing-date {
  color: gray;
  font-size: 20px;
}

/* Writing */
#blog-title {
  margin-bottom: 24px;
  text-align: center;
  font-size: 40px;
  color: gray;
}

#blog-date {
  margin-top: 12px;
  text-align: end;
  color: gray;
}

#blog-content {
  font-size: 20px;
}

#blog-content>p {
  color: #c6c6c6;
}