/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f8f8; /* Cor de fundo opcional */
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }
  
  .container img {
    max-width: 60%; /* Ajuste conforme necessário */
    height: auto;
  }
  