html, body {
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.header {
  width: 100%;
  background-color: #015699;
  color: #FFFFFF;
  text-align: center;
  line-height: 3rem;
  font-weight: 700;
}

.container-fluid {
  -webkit-overflow-scrolling: touch;
  background-color: #ffffff;
  bottom: 3rem;
  overflow-y: auto;
  padding: 1rem;
  position: absolute;
  top: 3rem;
}

.photo {
  max-width: 100%;
  height: auto;
}


.prompt {
  background-image: url('./iconos/icon-512.png');
  background-position-x: 1rem;
  background-position-y: 1.5rem;
  background-repeat: no-repeat;
  background-size: auto 40%;
  background-color: #ffffff;
  box-shadow: 0 20px 40px 0 rgba(91, 107, 174, 0.15);
  padding: 1.5rem 1rem 0.5rem 5rem;
  position: fixed;
  transition: all 0.5s ease-in-out;
  width: 100vw;
  z-index: 9;
}

.prompt.show {
  transition-delay: 3s;
  bottom: 0;
  opacity: 1;
}

.prompt.hide {
  bottom: -100%;
  opacity: 0;
}