body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #FFFFFF;
    margin: 0;
}

.progress-container {
    position: relative;
}

.circular-progress {
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 20;
}

.progress-minutes {
    fill: none;
    stroke: #8cc4ff;
    stroke-width: 40;
    transition: stroke-dashoffset 0.5s ease;
}

.progress-hours {
    fill: none;
    stroke: #3e4162;
    stroke-width: 42;
    transition: stroke-dashoffset 0.5s ease;
}

