* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none; /* remove o sublinhado dos links */
}

body {
  display: flex;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #191622;
  font-family: 'DM Sans', Helvetica, sans-serif;
}

h1 {
  color: #fff;
  margin-bottom: 20px;
}

.relogio {
  width: 300px;
  height: 300px;
  border: 5px solid #988aa8;
  border-radius: 50%;
  background-color: #13111b;
}

.riscos {
  width: 100%;
  height: 100%;
  padding-left: 50%;
  padding-top: 50%;
  margin-top: -3px;
}
.risco {
  width: 145px;
  height: 5px;
  position: absolute;
  transform-origin: left;
  display: flex;
  justify-content: flex-end;
}
.risco .ponto {
  width: 15px;
  height: 100%;
  background-color: #78d1e1;
}

.ponteiros {
  width: 100%;
  height: 100%;
  padding-left: 50%;
  padding-top: 50%;
  margin-top: -100%;
}
.p {
  transform-origin: left;
  transform: rotate(0deg);
  border-radius: 50%;
  position: absolute;
}

.p_s {
  width: 100px;
  height: 3px;
  background-color: #c369c6;
}
.p_m {
  width: 120px;
  height: 7px;
  background-color: #fff;
}
.p_h {
  width: 70px;
  height: 10px;
  background-color: #fff;
}
.encaixe {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  margin-top: -5px;
  margin-left: -12px;
}
.digital {
  color: #fff;
  font-size: 40px;
  margin-top: 20px;
}

footer {
  margin-top: 20px;
  color: #fff;
  font-size: 13px;
}

.color {
  color: #c369c6;
}

.std-color {
  transition: color 0.7s;
  color: #fff;
}

footer {
  position: absolute;
  bottom: 30px;
}

.menu {
  display: flex;
  gap: 10px;
}

.menu-num,
.act {
  width: 50px;
  height: 50px;
  border: 1px solid #988aa8;
  color: #988aa8;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  background-color: #13111b;
  border-radius: 0.5rem;
  transition: border-radius 0.1s;
}

.menu-num:hover {
  border: 1px solid #78d1e1;
  color: #78d1e1;
  border-radius: 0.8rem;
}

.act {
  border: 1px solid #c369c6;
  color: #c369c6;
  border-radius: 0.8rem;
}

.menu-title {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #988aa8;
  margin: 16px 0;
  font-weight: bold;
  font-size: 18px;
}
