body {
  margin: 0;
  background-color: black;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.wallpaper {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.background {
  box-sizing: border-box;
  width: 100%;
  height: 150px;
  padding: 3px;
  background-image: url(/pix/samples/bg1.gif);
  border: 1px solid black;
  background-size: 100% 100%;
  }

.slow-fade-in {
  animation: fade 600s linear;
}

@keyframes fade {
  from {opacity: 0;}
  to {opacity: 1;}
}

.debug {
  color: white;
  background-color: royalblue;
}

#placeholder {
  opacity: 1;
  transition: opacity 2000ms linear;
  z-index: 100;
}

.info-container {
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
  color: white;
  mix-blend-mode: soft-light;
  z-index: 0;
  transform-origin: top right;
}

#city {
  font-size: 1.5em;
}

#sunset-sunrise {
  text-align: right;
  color: white;
  float: right;
}

#sunset-sunrise img {
  height: 1em;
  margin-right: 10px;
}

html,body {
  height: 100%;
}
body {
  background: #0f3854;
  background: radial-gradient(ellipse at center,  #0a2e38  0%, #000000 70%);
  background-size: 100%;
}
p {
  margin: 0;
  padding: 0;
}
#clock {
  font-family: 'Share Tech Mono', monospace;
  color: whitesmoke;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translate(-50%, -50%);
  color: #daf6ff;
  text-shadow: 0 0 20px rgba(10, 175, 230, 1),  0 0 20px rgba(10, 175, 230, 0);
}
  .time {
      letter-spacing: 0.05em;
      font-size: 80px;
      padding: 5px 0;
  }
  .date {
      letter-spacing: 0.1em;
      font-size: 24px;
  }
  .text {
      letter-spacing: 0.1em;
      font-size: 12px;
      padding: 20px 0 0;
  }