body {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    background-color: #e4e4e5;
}

.container-desktop  {
    width: 80%;
    text-align: center;
}

.container-mobile  {
    width: 100%;
    text-align: center;
}


/* Por defecto (para resoluciones mayores a 959px) */
.desktop {
    width: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.mobile, .container-mobile {
  display: none;
  object-fit: contain;
    width: 100%;
}

/* Cuando el ancho de la pantalla es de 959px o menor */
@media (max-width: 959px) {
  .desktop, .container-desktop {
    display: none;
  }
  .mobile, .container-mobile {
    display: block;
  }
}
