html,
body {
  background-color: #ffffff;
  width: 100%;
  height: auto;
  margin: 0;
  font-size: 13px;
  color: #48463d;
  line-height: 20px;
  text-rendering: optimizeLegibility;
}

.image {
    width: 100%;
}

.image-mobile {
    width: 100%;
    display: none;
}


@media (max-device-width: 900px) {
    .image {
        display: none;
    }

    .image-mobile {
        display: block;
    }
}