@media only screen and (max-width: 1200px) {
    .clock {
        margin: 45px 2% !important;
    }

    #timezone {
        margin-bottom: 25px !important;
    }

}

.clock {
    width: 160px;
    height: 160px;
    display: -webkit-inline-box;      /* iOS 6-, Safari 3.1-6 */
    display: -moz-inline-box;         /* Firefox 19 */
    display: -ms-inline-flexbox;      /* IE 10 */
    display: -webkit-inline-flex;     /* Chrome */
    display: inline-flex;             /* Opera 12.1, Firefox 20+ */
    justify-content: center;
    align-items: center;
    background: url(../img/clock.png);
    background-size: cover;
    border: 4px;
    box-shadow: 0em -0.2em 0.8em rgba(255, 255, 255, 0.06),
    inset 0em -0.9em 1em rgba(255, 255, 255, 0.06),
    0em 1.2em 1.2em rgba(0, 0, 0, 0.3),
    inset 0em 1.2em 1.2em rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    margin: 3px 2%;
}


/* The small circle int the center */
.clock:before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: rgb(255, 255, 255);
    border-radius: 50%;

    /* The z-index property specifies the stack order of an element.
    /* An element with greater stack order is always in front of an element with a lower stack order.  */
    /* Note: z-index only works on positioned elements (position: absolute, position: relative, position: fixed, or position: sticky). */
    z-index: 10000;
    /* kept as a high value, since wanted at top */
}


.clock .hour,
.clock .min,
.clock .sec {
    position: absolute;
}

/* length of respective arms; */
.clock .hour, .hr {
    width: 80px;
    height: 80px;
}

.clock .min, .mn {
    width: 100px;
    height: 100px;
}

.clock .sec, .sc {
    width: 120px;
    height: 110px;
}


.hr, .mn, .sc {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    position: absolute;
    border-radius: 50%;

}


.hr:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 42px;
    background: #937e4e;
    z-index: 10;
    /* z-index least */
    border-radius: 2.8px;
}

.mn:before {
    content: '';
    position: absolute;
    width: 3.5px;
    height: 54px;
    background: #be9c50;
    z-index: 11;
    /* z-index more than hour hand */
    border-radius: 3px;
}

.sc:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 70px;
    background: #cfcfcf;
    z-index: 12;
    /* z-index more than hour minute hand */
    border-radius: 3px;
}

#timezone {
    margin-bottom: 150px;
}

.state {
    color: #000;
    position: relative;
    top: 110px;
    font-size: 1rem;
    letter-spacing: 1px;
    background-color: #9a7a44;
    width: 105px;
    height: 23px;
    line-height: 27px;
    font-weight: bold;
    border-radius: 50px;
}
