body {
    padding: 0;
    margin: 0;
    background: rgb(48, 48, 48);
    /* box-sizing: border-box; */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 600px; */
    position: relative;
    flex-direction: column;
}

.clock-face {
    margin: 50px;
    width: 400px;
    height: 400px;
    border: 20px solid rgb(61, 42, 165);
    background: url(/assets/img/clock.png) no-repeat;
    background-position: 50% 50%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 15px 15px 0 0 rgba(0, 0, 0, 0.125);
    z-index: 5;
    position: relative;
    /* padding: 20px; */
}

.clock-face::after {
    content: "";
    width: 25px;
    height: 25px;
    background: rgb(255, 217, 0);
    position: absolute;
    bottom: calc(50% - 14px);
    left: calc(50% - 11px);
    z-index: 999;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.hh {
    width: 90px;
    height: 8px;
    background-color: black;
    z-index: 10;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    position: absolute;
    top: 50%;
    left: calc(50% - 90px);
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform-origin: right;
}

.mh {
    width: 120px;
    height: 5px;
    background-color: rgb(255, 0, 0);
    z-index: 11;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    position: absolute;
    top: 50%;
    left: calc(50% - 120px);
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform-origin: right;
}

.sh {
    width: 140px;
    height: 3px;
    background-color: rgb(0, 255, 0);
    z-index: 12;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    position: absolute;
    top: 50%;
    left: calc(50% - 140px);
    transform: rotate(90deg);
    -webkit-transform: rotate(150deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform-origin: right;
}

.clock-face-small {
    /* margin-top: 50px; */
    width: 200px;
    height: 200px;
    border: 10px solid rgb(61, 42, 165);
    background: url(/assets/img/clock_small.png) no-repeat;
    background-position: 50% 50%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 15px 15px 0 0 rgba(0, 0, 0, 0.125);
    z-index: 5;
    position: relative;
    /* padding: 20px; */
}

.clock-face-small::after {
    content: "";
    width: 15px;
    height: 15px;
    background: rgb(255, 217, 0);
    position: absolute;
    bottom: calc(50% - 10px);
    left: calc(50% - 7px);
    z-index: 999;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.hh-small {
    width: 45px;
    height: 6px;
    background-color: black;
    z-index: 10;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    position: absolute;
    top: 50%;
    left: calc(50% - 45px);
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform-origin: right;
}

.mh-small {
    width: 60px;
    height: 4px;
    background-color: rgb(255, 0, 0);
    z-index: 11;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    position: absolute;
    top: 50%;
    left: calc(50% - 60px);
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform-origin: right;
}

.sh-small {
    width: 70px;
    height: 2px;
    background-color: rgb(0, 255, 0);
    z-index: 12;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    position: absolute;
    top: 50%;
    left: calc(50% - 70px);
    transform: rotate(90deg);
    -webkit-transform: rotate(150deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform-origin: right;
}

.clock-digital {
    margin-top: 50px;
    border: 5px solid rgb(61, 42, 165);
    border-width: 100%;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cdt {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 36px;
    text-align: center;
    margin-block-start: 5px;
    color: coral;
    margin: 0 10px;
}

.container .wc {
    margin: 50px;
    flex-wrap: wrap;
    flex-direction: row;
    column: 2;
    gap: 30px;
}

.city-name {
    font-size: 22px;
    font-weight: bold;
    color: coral;
    position: absolute;
    left: 15%;
    top: 35px;
    text-align: center;
}

.city-name-primary {
    font-size: 42px;
    font-weight: bold;
    color: coral;
    position: absolute;
    left: 15%;
    top: 55px;
    text-align: center;
}

.city-number {
    font-size: 22px;
    font-weight: bold;
    color: cyan;
    position: absolute;
    left: 40%;
    top: 110px;
    /* z-index: 0; */
}

.sel-city {
    width: 300px;
    height: 50px;
    font-size: 24px;
    background-color: rgb(61, 42, 165);
    color: burlywood;
}

.setting {
    flex-direction: row;
}

.count-cities {
    justify-content: center;
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 200px;
}

.btn-count {
    width: 50px;
    height: 50px;
    font-size: 24px;
    background-color: rgb(61, 42, 165);
    color: burlywood;
}

.count-cities-text {
    width: 100px;
    height: 50px;
    font-size: 24px;
    background-color: rgb(61, 42, 165);
    color: burlywood;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 900px) {
    .setting {
        flex-direction: column;
    }
}