<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* blinking cursor */
.cursor {
  color: transparent;
  background: gray;
  width: 0.3rem;
}
.blink {
  background: black;
  -webkit-animation: blink 0.8s infinite;
}
@-webkit-keyframes blink {
  0% {background: #222}
  50% {background: gray}
  100% {background: #222}
}

 #masthead {
   background-image: url('/img/keys-bridge-view.jpg');
   background-size: cover;
   background-position: 0px 0px;
   height: 600px;
   max-height: 600px;
 }

img#iphone-animation {
  width: 250px;
  padding-top: 8rem;
}

#shop {
  background-color: #75CFF1;
  height: 120px;
}
#shop img {
  margin-top: -70px;
}

#share #hand {
  margin-left: -120px;
  width: 400px;
}

.contains-image:hover {
  text-decoration: none;
}

@media only screen and (max-width: 767px) { /* sm */
  #masthead {
    height: 700px;
    max-height: 700px;
  }
  img#iphone-animation {
    padding-top: 0rem;
  }
  #shop {
    height: auto;
  }
  #shop img {
    margin-top: 0px;
  }
  #share #hand {
    margin-left: 0px;
    width: auto;
  }
}
</pre></body></html>