 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    min-height: 100vh;
    background-color: #fcfaf1;
}
body , .time , .leftSide,.rightSide,.day,.date{
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.rightSide{
    flex-direction: column;
}
.digitalClock{
    background-color: #000;
    color: #fcfafa;
    padding: 20px 40px;
    width: 524px;
    border-radius: 20px;
    box-shadow: 0 0 5px 10px rgb(0,0,0,0.6)

}
#hours{
    font-size: 6rem;
    font-weight: 600;
}
#dots{
    font-size: 4rem;
    font-weight: 800;
    margin-left: 20px;
    margin-right: 20px;
    
}
#minutes{
    font-size: 4rem;
    font-weight: 600;
}
#seconds{
    font-size: 1.5rem;
    font-weight: 600;
}
#ampm{
    font-size: 1.5rem;
    font-weight: 600;
    color: yellow;
}
.rightBottom{
   margin-left: 60px;
   transform: translateY((-26px));
}
#dd{
    font-size: 2rem;
    font-weight: 400;

}
#ddmmyy{
    font-size: 2rem;
    font-weight: 400;
} 
  