@charset "UTF-8";

body {
  font-family: 'Anton', sans-serif;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  height: 100vh; 
  margin: 0;      
  padding: 0;   
  text-align: center;
}

h1 {
  font-size: 2.5em;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
}

#clock {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    margin: 0px;
}

div {
    box-sizing: border-box;
    padding: 10px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #DFDFF5;
    border: 5px solid white;
    border-radius: 50px;
    transition: background-color 0.3s;
}

div:hover {
    background-color: white;
    box-shadow: 0 0 10px 5px #F5D331;
    filter: brightness(2.0);
}
