html {
  counter-reset: movie;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
  margin: 0;
  padding-top: 150px;
}

header {
  background-color: rgba(245, 245, 220, 0.98);
  border-bottom: 2px solid #9ac524;
  margin-bottom: 1rem;
  padding: 0.25rem 1rem;
  position: fixed;
  top: 0;
  width: 100%;
}

h1 {
  margin: 0;
}

form {
  display: inline;
}

form label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

img {
  height: auto;
  max-width: 150px;
}

h3 {
  margin-bottom: 0;
}

p {
  margin-top: 0;
}

#search {
  margin: 1rem 0;
}

#results {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  padding: 1rem;
}

#results section {
  border: 2px solid #333;
  border-radius: 10px;
}

#results section:before {
  background: #333;
  border-radius: 6px 6px 0 0;
  color: #fff;
  content: counter(movie);
  counter-increment: movie;
  display: block;
  padding: 0.25rem;
  text-align: center;
}

#results section > div {
  padding: 0.5rem;
}

#term {
  font-style: italic;
}

#loadmore {
  align-items: center;
  background: rgb(179, 235, 183);
  display: none;
  font-size: 1.5rem;
  height: 100px;
  justify-content: center;
  margin-top: 1rem;
}
