@import url('https://fonts.googleapis.com/css2?family=Tourney:wght@100&display=swap');

html, body {
    height: 100%;
  }

body {
  background: linear-gradient(-45deg, #000000, #0f0047);
  animation: change 10s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#time {
  font-family: 'Tourney', cursive;
  color: #c50000;
  font-weight: bold;
  font-size: clamp(2rem, 4vw + 1rem, 5.5rem);
}

#seconds {
  font-size: 2rem;
}

#miliseconds {
  font-size: clamp(1rem, 2vw + 1rem, 2.5rem);
}

#date {
  font-family: 'Tourney', cursive;
  color: #ffffff;
  font-weight: bold;
  font-size: clamp(2rem, 4vw + 1rem, 5.5rem);
}

.author {
  color: #8a8a8a65;
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
}