* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clock-face {
    height: 29.375rem;
    width: 29.375rem;
    border-radius: 50%;
    background: url("./images/bg.svg");
    background-size: contain;
    background-position: center;
    position: relative;
    border: 1.2rem solid #333333;
}

.hands {
    position: absolute;
    width: 0.4375rem;
    height: 34%;
    background: transparent;
    border: 0.0625rem solid #FFFFFF;
    border-radius: 0.25rem;
    left: 50%;
    bottom: 50%;
    transform: translateX(-50%);
    transform-origin: bottom;
}

.hour {
    height: 27%;
}

.second {
    width: 0.25rem;
    background: #FFFFFF;
}