/* GI: (ver 14 May 2025) */

.qs-photo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  opacity: 0;

  --webkit-touch-callout: none;
  --webkit-user-select: none;
  --khtml-user-select: none;
  --moz-user-select: none;
  --ms-user-select: none;
  user-select: none;
  pointer-events: none;
  --webkit-user-drag: none;
}

.qs-photo.qs-on {
  opacity: 1;
}

/* .qs-bg-credits {
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #ccc;
  background: rgba(0,0,0,.5);
  font-size: 14px;
  opacity: 0.8;
}

.qs-bg-credits a {
  color: inherit;
  text-decoration: none;
} */

#CloseBtn {
  width: 85px;
  height: 80px;
  position: fixed;
  left: 47%;
  /* right: 50%; */
  bottom: 35px;
  color: white;
  padding: 5px;
  border-radius: 10%;
  font-family: sans-serif;
  font-size: 12px;
  background: none;
  /* background-color: rgba(0, 0, 0, 0.3); */
  border: none;
  cursor: pointer;
}
#CloseBtn:hover {
  background: none;
  color: #00ccff;
  /* transition: 0.7s; */
  /* transform: scale(1.1); */
}

#CloseBtn > svg {
  width: 88%;
  height: 88%;
  background-size: 85% 80%;
  padding: 8px;
  border-radius: 10%; 
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.5);
  fill: #fff
}
#CloseBtn:hover > svg {
  background-image: none;
  background-color: #fff;
  fill: #24292F;
}

.clock {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-family: monospace;
  font-size: 12px;
  background: none;
  border: none;
  cursor: none;
  opacity: 0.6;
}

.logo{
  width: 100%;
  max-width: 32px;
  position: fixed;
  top: 50px;
  right: 30px;
  animation: rotate-logo 10s linear infinite;
}
@keyframes rotate-logo {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(-360deg);
  }
}
