body {
  background-color: #000;
  overflow: hidden;
}

.clock_wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clock {
  font-family: 'Courier New', monospace;
  font-size: 20vw;
  letter-spacing: 0.05em;
  background-image: url('../images/image-1.png');
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.colon {
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.settings_icon {
  position: fixed;
  top: 20px;
  right: -51px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  border: 2px solid #fff;
  border-radius: 8px;
  transition: right 0.25s ease;
  z-index: 20;
}

.settings_icon:hover {
  right: 0;
  color: var(--accent-color);
  border-color: var(--accent-color);
}
