* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: 0.4s all;
}

body {
    background: cadetblue;
}

.screen {
    width: 1140px;
    margin: auto auto;
    display: flex;
    gap: 5px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hours, .minutes, .seconds, .hours-two, .minutes-two, .seconds-two {
    display: grid;
    grid-template-columns: repeat(8, 20px);
    grid-auto-rows: 20px;
    gap: 2px;
    transition: 0.1s all;
}

/* .hours__dote, .minutes__dote, .seconds__dote {
    background: black;
} */

.under {
    width: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: 0.1s all;
    z-index: -10;
}

.dote {
    width: 100%;
    height: 20px;
    background: black;
    border-radius: 30px;
    box-shadow: 1px 1px 1px black;
}

.dotes {
    border-radius: 8px;
    /* border: 1px solid black; */
    box-shadow: 1px 1px 1px black;
}

@media ( max-width: 1140px ) {
    .screen {
        width: 100%;
        
    }
}