body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: var(--background-color);
  gap: 48px;
}

main {
  width: 100%;
  max-width: 800px;
}

main > .logo {
  width: 100%;
  display: flex;
  justify-content: center;
}

main > .logo > img {
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
}

.erro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 48px;
  text-align: center;
}

.erro > p:first-of-type {
  font-size: 22px;
}

.relatorios {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.relatorios > div {
  flex: 0 0 200px;
  background-color: rgb(53, 53, 53);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: filter 0.2s ease;
}

.relatorios > div:not(.emBreve) {
  cursor: pointer;
}

.relatorios > div:not(.emBreve):hover {
  filter: brightness(1.1);
  transition: filter 0.2s ease;
}

.relatorios > div.emBreve > *:not(p) {
  filter: saturate(0);
}

.relatorios > div.emBreve > p {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  background-color: red;
  padding: 8px 32px;
  transform: rotate(332deg);
  translate: -50% -50%;
  z-index: 10;
}

.relatorios > div > img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.relatorios > div > h2 {
  padding: 8px 16px;
}

footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  opacity: 0.2;
  transition: opacity 0.2s ease;
  text-align: center;
}

footer:hover {
  opacity: 1;
  transition: opacity 0.2s ease;
}

footer > img {
  width: 120px;
}
