@import url("https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&family=Quicksand:wght@300;400;500;600;700&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-align: center;
}

body {
  background: #018ded url('assets/bg_img.jpg')
    no-repeat;
  background-size: cover;
  font-family: "Oxygen", sans-serif;
  min-height: 92vh;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 3rem;
  color: #b10093;
}

.clock {
  width: 18rem;
  height: 18rem;
  border: 20px solid white;
  border-radius: 50%;
  position: relative;
  padding: 2rem;
  margin-left: 2rem;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1), inset 0 0 0 3px #efefef,
    inset 0 0 10px black, 0 0 10px rgba(0, 0, 0, 0.2);
}

.clock-face {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateY(-3px); /* account for the height of the clock hands */
}

.hand {
  width: 50%;
  height: 6px;
  background-color: black;
  position: absolute;
  top: 50%;
  transform-origin: 100%;
  transform: rotate(90deg);
  /* transition: all 0.05s; */
  transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
}
