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

body {
  font-family: sans-serif;
  width: 100vw;
  min-height: 100vh;
  color: #a0ffd0;
  background-color: #1E1E2E;
}

.navbar {
  margin: 0 auto;
  min-height: 20vh;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title {
  font-size: 4rem;
  font-family: 'Baloo 2', cursive;
  font-weight: bold;
}

.container {
  margin: 0 auto;
  min-height: 70vh;
  max-width: 1080px;
  display: grid;
  place-items: center;
}

.clock-body {
  background-color: #2E2E4E;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  border: 15px solid #a0ffd0;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 5px 5px 10px #00000055;
}

.clock-hands {
  display: flex;
  flex-direction: row-reverse;
  transform: rotate(90deg) translate(-50%,-50%);
}

span {
  height: 6px;
  position: absolute;
  transform-origin: right;
  border-radius: 20px;
}

.sec {
  width: 120px;
  background-color: #a0ffd0;
  z-index: 1;
}

.min {
  width: 90px;
  background-color: #ffc2e7;
}

.hour {
  width: 60px;
  background-color: #d4defe;
}

.center {
  width: 15px;
  height: 15px;
  background-color: #f0afa0;
  z-index: 100;
  transform: translate(8px,-5px)
}
