
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-size: cover;
    min-height: 100vh;
    text-align: center;
    position: relative;
}

.logo {
    max-width: 30vw;
    height: auto;
    position: relative; /* Normal en mobile */
    margin-top: 20px;
}

img {
  max-width: inherit;
  height: auto;
}

/* Estilos para pantallas grandes */
@media (min-width: 768px) {
  body {
    background-size: cover;
  }

  .logo {
    max-width: 6vw;
    position: absolute;
    left: 100px;
    top: 20px;
    margin: 0;
  }
}
