html, body {
  width: 100%;
}

html {
  overflow-y:scroll;
}

body {
  background-color: #020202;
  color: #cccccc;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}
  
* {
  box-sizing: border-box;
}

header {
  font-family: 'MedievalSharp', cursive;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
header h3 {
  color: #fff;
  margin: 0;
  font-size: 1.5rem;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border: 1px solid #585858;
  border-radius: 5px;
}
.header-link-root {
  text-decoration: none;
}
.header-link-list {
  font-family: 'Roboto', sans-serif;
}

footer {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: right;
}
footer .footer-text {
  padding: 1.5rem;
  border: 1px solid #585858;
  border-radius: 5px;
}

.sidebar {
  position: sticky;
  top: 1.5rem;
}
.sidebar h5 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
}
.sidebar ul {
  list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.5rem;
}

p {
  margin: 0 0 1.5rem;
  line-height: 1.5;
  text-align: justify;
}

img {
  height: 32rem;
  display: block;
  margin: 0 auto 1.5rem;
  border: 1px solid #585858;
  border-radius: 0.5rem;
  max-width: 100%;
  object-fit: contain;
}
img + em {
  display: block;
  text-align: center;
}

a {
  color: #a90808;
  font-weight: 700;
}

ul {
  line-height: 1.5;
}
ul li {
  margin-bottom: 0.5rem;
}

code {
  background-color: #353535;
  padding: 1px 5px;
  border-radius: 3px;
}

iframe {
  margin: 0 0 1.5rem;
}

.list-of-posts h1 {
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  font-size: 3rem;
}
.list-of-posts ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.list-of-posts h2 {
  margin: 0 0 0.5rem;
}

.post-title {
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 700;
  font-size: 3rem;
}
.post-footer {
  text-align: right;
  font-style: italic;
}

h3 {
  font-size: 1.3rem;
  margin: 1rem 0;
  font-weight: 700;
}

@media (max-width: 1280px) {
  img {
    height: auto;
    width: 100%;
  }
}
@media (max-width: 450px) {
  .header-inner {
    flex-direction: column;
  }
  .header-link-root {
    margin-bottom: 0.5rem;
  }
  .list-of-posts h1 {
    font-size: 2rem;
  }
  .post-title {
    font-size: 2rem;
  }
}