
@font-face {
  font-family: 'jubilee';
  src: url('/font/OTJubilee-Diamond.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  background: #f5dee6;
  color: #C82817;
  
  font-family: 'jubilee', sans-serif;
}
img {
  max-width: 100%;
}
main {
  padding-bottom: 3em;
}
h1 {
  font-weight: normal;
  font-size: 3em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0em;
}
.watchlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 200px));
  justify-content: center;
  grid-gap: 1em;
  padding: 1em;
}
.watchitem {
  position: relative;
  text-align: center;
}
.watchitem__poster {
  border-radius: 4px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  width: 100%;
}
.watchitem__rating {
  color: white;
  font-family: system-ui;
  margin-top: .25em;
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  filter: drop-shadow(0 0 3px rgba(0,0,0,.6));
}