* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #292929;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    width: calc(100% - 2rem);
    height: 100vh;
    margin-inline: auto;
}

.clockBox {
    width: 300px;
    height: 300px;
    border: 10px solid #fff;
    border-radius: 150px;
    position: relative;
}

.hand {
    width: 45%;
    left: 5%;
    background: #fff;
    top: 50%;
    transform-origin: 100%;
    position: relative;
    border-radius: 5px;
    transform: rotate(90deg);
}

.secHand {
    height: 1px;
    background: red;
    z-index: 3;
    /* transform: rotate(300deg); */
}

.minHand {
    height: 2px;
    z-index: 2;
}

.hourHand {
    height: 3.3px;
    width: 27%;
    left: 23%;
    z-index: 1;
    /* transform: rotate(30deg); */
}

.owner {
    position: absolute;
    bottom: 10px;
    color: #fff;
    font-family: sans-serif;
    letter-spacing: 1.1px;
    font-size: 12px;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .2;
}

