
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Comic Sans MS", "Poppins", sans-serif;
}


body{
    min-height: 100vh;
    background: linear-gradient(270deg, #ff0080, #7928ca, #2afadf, #ffdd00);
    /* background-image: url(./dwon.avif); */
    background-size: 600% 600%;
    animation: bgMove 7s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes bgMove{
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}


.app{
    width: 100%;
    max-width: 420px;
    padding: 20px;
}


.title{
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #fff;
    animation: bounce 2s infinite;
}

@keyframes bounce{
    0%,100%{transform: translateY(0)}
    50%{transform: translateY(-10px)}
}


.card{
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

.label{
    color: #fff;
    margin: 10px 0;
}


.time{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    color: #fff;
    margin: 15px 0;
}

.time div{
    background: #000;
    padding: 10px 15px;
    border-radius: 15px;
    margin: 0 5px;
    box-shadow: 0 0 15px #00fff0;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow{
    from{box-shadow:0 0 10px #00fff0}
    to{box-shadow:0 0 25px #ff00ff}
}


.currentday{
    color: #ffeb3b;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #000;
}


.datte{
    display: flex;
    justify-content: center;
    gap: 5px;
    color: #fff;
    font-size: 22px;
}


@media(max-width:480px){
    .time{
        font-size: 32px;
    }
}
