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

.clock {
    position: relative;
    width: 200px;
    height: 200px;
    border: 10px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hand {
    position: absolute;
    bottom: 50%;
    background-color: white;
    transform-origin: bottom;
    transition: transform 0.05s ease-in-out;
}

.hour {
    width: 6px;
    height: 50px;
}

.minute {
    width: 4px;
    height: 70px;
}

.second {
    width: 2px;
    height: 90px;
    background-color: red;
}

.center {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
}