body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(90deg, #493a94, #e05dcd);
    color: #fff;
    text-align: center;
    padding: 50px;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.timer-container {
    display: inline-block;
    background: rgba(0,0,0,0.4);
    padding: 30px 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-top: 200px;
}

.countdown {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.time-box {
    position: relative;
    
    height: 120px;
     width: 130px;
}

svg {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
}

circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    stroke: rgba(255,255,255,0.2);
}

#days-circle, #hours-circle, #minutes-circle, #seconds-circle {
    stroke: #b49c9c;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.5s linear;
   
}

.time-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
}

.time-text span {
    font-size: 24px;
    font-weight: bold;
}

.time-text p {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
}

