@font-face {
  font-family: minecraft;
  src: url("/fonts/Minecraft.otf");
}

@font-face {
  font-family: daydream;
  src: url(/fonts/Daydream.otf);
}

body {
  background-color: #191919;
  color: #c0c0c0;
  font-family: Arial, Helvetica, sans-serif;
  max-width: 60vw;
  margin: auto;
}

h1 {
  text-align: center;
}

h2 {
  margin-top: 50px;
}

p {
  font-size: 15pt;
  line-height: 20pt;
}

a {
  color: rgb(141, 141, 255);
}

code {
  border: 1px solid rgb(20, 20, 20);
  background-color: #7a7a7a;
  color:#191919;
  padding: 1px 4px;
  font-size: 12pt;
  hyphens: none;
}

#title-headline {
  font-family: minecraft;
}

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

#navbar {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: #32354e;
}

#navbar > a {
  padding: 10px 20px;
  border: 2px solid #32354e;
  background-color: #313030;
  color: #c0c0c0;
  text-decoration: none;
  font-family: minecraft;
  font-weight: 800;
}

#navbar > a:hover {
  background-color: rgb(40, 47, 81);
}

.content {
  margin-bottom: 60px;
  padding: 5px;
}

#footer {
  position: fixed;
  bottom: 0px;
  width: 60vw;
  border-top: 2px solid #32354e;
  background-color: #282828;
}

#footer-links {
  position: relative;
  width: 100%;
  display: flex;
  /* justify-self: center; */
  justify-content: center;
  align-items: baseline;
}

.footer-link {
  text-decoration: none;
  padding: 10px;
  font-size: small;
}

#blog-nav {
  display: flex;
  flex-direction: column;
  background-color: #32354e;
}

.blog-nav-entry {
  padding: 5px 10px;
  background-color: #313030;
  border: 1px solid #32354e;
}

.blog-nav-entry:hover {
  background-color: rgb(40, 47, 81);
}

#article-back {
  margin-top: 30px;
}

.log {
  float: left;
  margin: 0px 10px 10px 0px;
  max-width: 40%;
  padding: 10px;
  background-color: #2a2a2a;
}

.log > h4,ul {
  font-family: monospace;
  font-size: 12pt;
}

.log > ul >li {
  margin-left: -20px;
}

.gif-row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 10px;
}

.gif-col {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  gap: 10px;
}

@media only screen and (orientation: portrait) {
  body {
    max-width: 100vw;
  }

  #footer {
    width: 100vw;
  }
}