:root {
  --navy: #061735;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  background: var(--navy);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--navy);
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.poster {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  line-height: 0;
}

.poster img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* Em telas maiores, mantém a arte centralizada sem esticar além do limite. */
@media (min-width: 901px) {
  .poster {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.35);
  }
}

/* Mobile: ocupa toda a largura disponível, mantendo a proporção da imagem. */
@media (max-width: 600px) {
  .poster,
  .poster img {
    width: 100vw;
  }
}
