body {
  background-color: whitesmoke;
  color: black;
  /* background-color: green;
  color: orange; */
}

.mobileHide {
  display: inline;
}

/* Smartphone Portrait and Landscape */

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .mobileHide {
    display: none;
  }
}

.mobileShow {
  display: none;
}

/* Smartphone Portrait and Landscape */

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .mobileShow {
    display: inline;
  }
}

</style><style>body {
  font-family: Arial, Helvetica, sans-serif;
}

/* The Modal (background) */

.modal {
  display: block;
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content */

.modal-content {
  background-color: #ffffff;
  color: #000000;
  margin: auto;
  padding: 10px;
  border: 1px solid #000000;
  width: 50%;
}

/* Modal Content */

.modal-image {
  background-color: #d3d3d3;
  margin: auto;
  width: 50%;
  height: 50%;
}

/* The Close Button */

.close {
  color: #000000;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover, .close:focus {
  color: #ff0000;
  text-decoration: none;
  cursor: pointer;
}