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

body{
    background-color: black;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

#digitalWatch{
    background-color: gray;
    width: fit-content;
    padding: 15px;
    border-radius: 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: sans-serif;
    margin-top: 50px;
}

p{
    display: inline-block;
}

p:nth-child(2)::before{
    content: ":";
}

p:nth-child(3)::before{
    content: ":";
}

p#local{
    font-weight: bold;
    background-color: gray;
    padding: 15px;
    border-radius: 20px;
    color: white;
    margin-bottom: 40px;
    font-size: 1.5rem;
    font-family: sans-serif;
    text-transform: capitalize;
}

.relogio {
  width: 250px;
  height: 250px;
  background-color: rgba(255, 255, 255, 0.500);
  border: 5px dashed rgb(0, 0, 0);
  border-radius: 50%;
  position: relative;
  padding: 20px;
  box-shadow: 0px 0px 15px 10px rgba(255, 255, 255, 0.2);
}

.mostrador {
  width: 100%;
  height: 100%;
  position: relative;
}

.ponteiro {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom; 
  border-radius: 10px;
  transform: translateX(-50%) rotate(0deg);
  box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.200);

}

.hora {
  width: 7px;
  height: 35%;
  background-color: #333;
}

.minuto {
  width: 5px;
  height: 45%;
  background-color: #666;
}

.segundo {
  width: 3px;
  height: 50%;
  background-color: #ff0000;
}

.eixo {
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}