@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    height: 100vh;
    background:#0c1324;
    /* display:flex; */
    /* transition: 0.5s; */
    transition:background 0.5s
}
section{
    position: relative;
    width:100%;
    height: 100%;
    /* background:#111; */
    /* display: flex;
    /* color: #fff; */
     
    font-family: 'Poppins', sans-serif;

}
/* h2 span{
    transition:1.5s;
} */

h2 span{
    position: relative;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    transition: 3.5s;
    overflow: hidden;

    
}
h2:hover span{
    filter:blur(20px);
    filter:invert(5px);
    opacity: 0;
    transform:scale(5);
    color:#e42948;

}
h2{
    font-size: 2.5em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bolder; 
}
h2 span:nth-child(10n+1){
    transition-delay: 0s;
}
h2 span:nth-child(10n+2){
    transition-delay: 0.1s;
}
h2 span:nth-child(10n+3){
    transition-delay: 0.2s;
}
h2 span:nth-child(10n+4){
    transition-delay: 0.3s;
}
h2 span:nth-child(10n+5){
    transition-delay: 0.4s;
}
h2 span:nth-child(10n+6){
    transition-delay: 0.5s;
}
h2 span:nth-child(10n+7){
    transition-delay: 0.6s;
}
h2 span:nth-child(10n+8){
    transition-delay: 0.7s;
}
h2 span:nth-child(10n+9){
    transition-delay: 0.8s;
}
h2 span:nth-child(10n+10){
    transition-delay: 0.9s;
}
h2 span:nth-child(10n+11){
    transition-delay: 1s;
}

.clock{
    background: transparent url(clock.png);
	background-size:cover;
    height: 320px;
    width: 320px;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    box-sizing: content-box;
    border-radius: 50%;
    /* border: 15px solid #131414; */
    border: 100% solid  #2987e4;
    /* box-shadow: 15px 15px 35px rgba(60, 28, 114, 0.6),
    inset 0 0 30px rgba(129, 105, 187, 0.269); */
    box-shadow:3px 9px 22px #2987e4, -3px -9px 22px green;
}
img{
    position: relative;
}
.toggler{
    display:flex;
    justify-content: center;
    align-items: center;
}
.label{
    background-color: rgb(215, 212, 212);
    display:flex;
    height: 30px;
    width: 50px;
    border-radius:50px;
    border-color: aqua;
}
.fa-moon{
    color:#f1c40f;
    z-index: 10;
}
.fa-sun{
    color:#f39c12;
}
/* section.light{
    background: #efeeeb;
} */
.hand{
    position: absolute;
    background-color: #d8d3c2;
    margin: auto;
    left: 0;
    right: 0;
    border-radius: 5px;
    transform-origin: bottom;
}
.hour{
    height: 60px;
    width: 5px;
    top: 100px;
    background-color: #2987e4;

}
.minute{
    height: 90px;
    width: 5px;
    top: 70px;
    /* background-color: #afe429; */

}
.seconds{
    height: 100px;
    width: 3px;
    top: 60px;
    background-color: #e42948;
}
