/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tamanho total da tela */
html, body {
  height: 100%;
  width: 100%;
  background-color: #000;
}

/* Centralização */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Imagem principal */
.responsive-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* Troca imagem em telas menores (mobile) */
@media (max-width: 768px) {
  .responsive-img {
    content: url('Website_under_construction_coming_soon_mobile.png');
  }
}
