* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #1e1e24;
  font-family: sans-serif;
}

.relogio {
  position: relative;
  width: 300px;
  height: 300px;
  background-color: #2b2b36;
  border-radius: 50%;
  border: 8px solid #444455;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 0, 0, 0.4);

  background-image: radial-gradient(circle, #2b2b36 88%, transparent 90%),
    repeating-conic-gradient(from -1deg, #888 0 2deg, transparent 2deg 30deg);
}

.ponto-central {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: #ff4757;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.conteiner-ponteiro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.ponteiro {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

.ponteiro-hora {
  width: 8px;
  height: 25%;
  background-color: #ffffff;
  z-index: 5;
}

.ponteiro-minuto {
  width: 4px;
  height: 38%;
  background-color: #dfe4ea;
  z-index: 6;
}

.ponteiro-segundo {
  width: 2px;
  height: 45%;
  background-color: #ff4757;
  z-index: 7;
}

@keyframes girar {
  100% {
    transform: rotate(360deg);
  }
}

.segundos {
  animation: girar 60s linear infinite;
}

.minutos {
  animation: girar 3600s linear infinite;
}

.horas {
  animation: girar 43200s linear infinite;
}
