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

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

body{
  font-family: 'Quicksand', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  color: black; 
}
main{
  background: rgba( 255, 255, 255, 0.25 );
  box-shadow: 0 8px 32px 0 rgba(10, 11, 31, 0.37);
  backdrop-filter: blur( 9px );
  -webkit-backdrop-filter: blur( 9px );
  border-radius: 10px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  padding: 1rem;
}
#time{
  font-size: 7rem;
}

h1{
  margin-bottom: 3rem;
}

h2{
  margin-bottom: 0.5rem;
  opacity: 0.8;

}

@media(max-width: 700px){
  #time{
    font-size: 5rem;
  }
}