.flip-clock-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
}

.flip-clock-container span {
    /* color: rgb(218, 218, 218); */
    /* margin-bottom: -20px; */
    /* Remove extra margin */
}

.flip-clock {
    margin-top: -20px;
    font-family: sans-serif;
    --fcc-flip-duration: 0.5s;
    /* transition duration when flip card */
    --fcc-spacing: 8px;
    /* space between unit times and separators */
    --fcc-digit-block-width: 40px;
    /* width of digit card */
    --fcc-digit-block-height: 60px;
    /* height of digit card, highly recommend in even number */
    --fcc-digit-block-radius: 5px;
    /* border radius of digit card */
    --fcc-digit-block-spacing: 5px;
    /* space between blocks in each unit of time */
    --fcc-digit-font-size: 30px;
    /* font size of digit */
    /* --fcc-digit-color: #333333; */
    /* color of digit */
    --fcc-label-font-size: 15px;
    /* font size of label */
    /* --fcc-label-color: #e4e4e4; */
    /* color of label */
    /* --fcc-background: darkgray; */
    /* background of digit card */
    /* --fcc-divider-color: gray; */
    /* color of divider */
    --fcc-divider-height: 0.5px;
    /* height of divider */
    --fcc-separator-size: 6px;
    /* size of colon */
    /* --fcc-separator-color: lightgray; */
    /* color of colon */
}

@media screen and (max-width: 768px) {
    .flip-clock {
        --fcc-digit-block-width: 40px;
        /* Adjust the digit block width */
        --fcc-digit-block-height: 60px;
        /* Adjust the digit block height */
        --fcc-digit-font-size: 30px;
        /* Adjust the digit font size */
        --fcc-label-font-size: 11px;
        /* Adjust the label font size */
    }
}

@media screen and (max-width: 480px) {
    .flip-clock {
        --fcc-digit-block-width: 30px;
        /* Further adjust the digit block width */
        --fcc-digit-block-height: 45px;
        /* Further adjust the digit block height */
        --fcc-digit-font-size: 25px;
        /* Further adjust the digit font size */
        --fcc-label-font-size: 13px;
        /* Further adjust the label font size */
    }
}