@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-VariableFont_wght_200_Light.woff2') format('woff2'),
         url('fonts/Montserrat-VariableFont_wght_200_Light.woff') format('woff'),
         url('fonts/Montserrat-VariableFont_wght_200_0.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('fonts/Montserrat-VariableFont_wght_400_4.woff2') format('woff2'),
         url('fonts/Montserrat-VariableFont_wght_400_4.woff') format('woff'),
         url('fonts/Montserrat-VariableFont_wght_400_4.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body {
    background: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock-container {
    background-color: #000000;
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 16px 28px rgba(0, 0, 0, 0.44);
    display: flex;
}

.clock-col {
    text-align: center;
    margin-right: 20px;
    margin-left: 20px;
    min-width: 70px;
    position: relative;
}

.clock-col:not(:last-child):before, .clock-col:not(:last-child):after {
    content: "";
    background-color: rgba(255, 255, 255, 0.3);
    height: 3px;
    width: 3px;
    border-radius: 50%;
    display: block;
    position: absolute;
    right: -22px;
}

.clock-col:not(:last-child):before {
    top: 25%;
}

.clock-col:not(:last-child):after {
    top: 40%;
}

.clock-timer {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.clock-label {
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    font-size: 0.7rem;
    margin-top: 5px;
}

@media (max-width: 825px) {
    .clock-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    .clock-col {
        margin-right: 10px;
        margin-left: 10px;
        min-width: 60px;
    }

    .clock-col:before, .clock-col:after {
        display: none !important;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #191919;
        color: white;
    }

    .clock-container {
        background-color: #000000;
    }
}