body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #d9d9d9;
    font-family: Arial, sans-serif;
    scale: 2;
}

.clock {
    position: relative;
    width: 200px;
    height: 200px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 5px 5px 15px rgba(0, 0, 0, 0.2),
                        inset -5px -5px 15px rgba(255, 255, 255, 0.8);
}

.hour {
    position: absolute;
    color: #000000;
    font-size: 80px;
    font-weight: bold;
    z-index: 1;
}

.minute {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: rgb(0, 0, 0);
    border-radius: 50%;
    transform-origin: center;
    top: 50%;
    left: 50%;
    margin-top: -5px; /* Half of the dot's height */
    margin-left: -5px; /* Half of the dot's width */
}
