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

*{
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
}
.clock{
    width: 100%;
    height:100vh;
    background-color: rgb(175, 186, 195);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.box{
    height: 150px;
    background-color: rgb(51, 49, 49);
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}
.hour,.min,.sec{
    position: relative;
    width : 80px;
    margin: 0px 5px;
    padding: 0 5px;
    height: 80%;
    font-size: 100px;
    overflow: hidden;
}
.b1,.b2,.b3,.b4,.b5,.b6{
    height: 100%;
    text-align: center;
    position: absolute;
    background-color: black;
    width : 80px;
    transition: 0.2s;
}
p{
    font-size: 100px;
}