
@import url('https://fonts.googleapis.com/css2?family=Jersey+15&display=swap');

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

body {
  background: #1099bb;
  color: #373d42;
  font-family: "Jersey 15", sans-serif;
  overflow: hidden;
  font-size: 22px;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
   font-smooth: none;
   text-shadow: 1px 1px #0874ff69;
}

.container {
  background: #fdfdfd;
  left: 0;
  margin: 0 auto;
  min-width: 670px;
  height: 100%;
  overflow: scroll;
  position: absolute;
  right: 0;
  top: 0;
  width: 80svh;
}

.container > header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.container > header > h1 {
  color: #16181a;
}

.container > header > span {
  text-align: right;
}

.container > footer {
  border-top: 2px solid #97a5b1;
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}

.container > footer img {
  height: auto;
  image-rendering: pixelated;
}

.container > h1 {
  margin: 2rem;
  text-align: justify;
}

.post {
  border-top: 2px solid #97a5b1;
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: 300px auto;
  padding: 1rem 2rem;
}

.post-image img {
  height: auto;
  max-width: 100%;
}

.post-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 0 1.25rem;
}

.post-content h2 {
  color: #16181a;
}

.release-year {
  color: #ffc200;
}

.link-button {
  border: 1px solid;
  box-shadow: 1px 1px #0874ff69;
  padding: 4px 8px;
  text-decoration: none;
}

.link-button:hover {
  box-shadow: none;
  text-shadow: none;
}


