.clockgroup {
    font-family: sans-serif;
    display: grid;
    height: 100vh;
    place-items: center;
    align-content: center;
    justify-content: center;
    align-items: center;
    justify-items: stretch;
}

.base-timer {
    position: relative;
    width: 300px;
    height: 300px;
    margin-bottom: 30px;
}

.base-timer__svg {
    transform: scaleX(-1);
}

.base-timer__circle {
    fill: none;
    stroke: none;
}

.base-timer__path-elapsed {
    stroke-width: 7px;
    stroke: grey;
}

.base-timer__path-remaining {
    stroke-width: 7px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: currentColor;
}

.base-timer__path-remaining.green {
    color: rgb(65, 184, 131);
}

.base-timer__path-remaining.orange {
    color: orange;
}

.base-timer__path-remaining.red {
    color: red;
}

.base-timer__label {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 0;
    margin-bottom: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

#audioPlayer::-webkit-media-controls {
    display: none !important;
}

.snowflake {
    /* width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgb(0, 0, 0);
    animation: fall 10s linear; */

    position: absolute;
    width: 20px;
    height: 20px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: black;
}

@keyframes fall {
    from {
        transform: translateY(-100px);
    }

    to {
        transform: translateY(100vh);
        opacity: 0;
    }
}