* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Martian Mono', monospace;
  font-size: larger;
}

body {
  background-color: #d3b81c;
}

main {
  min-width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.relogio {
  min-width: 400px;
  min-height: 400px;
  background-color: #e9ead9;
  border-radius: 400px;
  border: 15px groove #333;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.numero {
  font-size: 1.2rem;
  font-weight: 600;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 5px;
}

.numero-1 {
  transform: rotate(30deg);
}

.numero-2 {
  transform: rotate(60deg);
}

.numero-3 {
  transform: rotate(90deg);
}

.numero-4 {
  transform: rotate(120deg);
}

.numero-5 {
  transform: rotate(150deg);
}

.numero-6 {
  transform: rotate(180deg);
}

.numero-7 {
  transform: rotate(210deg);
}

.numero-8 {
  transform: rotate(240deg);
}

.numero-9 {
  transform: rotate(270deg);
}

.numero-10 {
  transform: rotate(300deg);
}

.numero-11 {
  transform: rotate(330deg);
}

.numero-12 {
  transform: rotate(360deg);
}

.segundos {
  width: 5px;
  height: 140px;
  background-color: #892626;
  position: absolute;
  border-radius: 5px;
  transform: translate(0, -50%);
  transform-origin: bottom center;
}

.minutos {
  width: 8px;
  height: 110px;
  background-color: #333;
  position: absolute;
  border-radius: 5px;
  transform: translate(0, -50%);
  transform-origin: bottom center;
}

.horas {
  width: 13px;
  height: 70px;
  background-color: #333;
  position: absolute;
  border-radius: 13px;
  transform: translate(0, -50%);
  transform-origin: bottom center;
}

.centro {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: #892626;
  position: absolute;
}

footer {
  position: block;
  bottom: 0;
  width: 100%;
  height: 30%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: small;
  text-align: center;
}