* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-image: url(../img/background.png);
  color: #fff;
  display: flex;
  flex-direction: column;
  height: fit-content;
  min-height: 100vh;
}

main {
  display: flex;
  flex-direction: column;
  /* padding-top: 32px; */
  height: 100%;
  align-items: center;
  justify-content: flex-start;
}

.title {
  letter-spacing: 0.5rem;
  padding-bottom: 32px;
  padding-top: 32px;
  text-transform: uppercase;
}

.banner {
  height: 300px;
}

.container {
  width: 100%;
  place-items: center;
  display: grid;
  overflow-y: auto;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 32px 0 32px 0;
}

.arrow {
  font-size: 1.5rem;
  padding-left: 20px;
  padding-top: 20px;
  width: 100%;
  display: flex;
}

.film {
  display: flex;
  flex-direction: column;
}

.processando {
  font-size: 0.75rem;
  height: 50vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
}
