* {
    padding: 0;
    margin: 0;
}

body {
    background-image: url('img/sky.jpg');
}

.conteiner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.clock {
    height: 500px;
    width: 500px;
    min-width: 500px;
    min-height: 500px;
    border: 20px solid green;
    border-radius: 50%;
    position: absolute;
    transition: all 0.5s;
}

.clock > div {
    border-radius: 10px;
}

.second {
    height: 240px;
    width: 10px;
    background-color: rgb(128, 0, 0);
    z-index: 3;
    position: absolute;
    margin-left: 245px;
    margin-top: 10px;
    border: 1px solid white;
}


.minute {
    height: 200px;
    width: 10px;
    background-color: rgb(255, 189, 47);
    z-index: 4;
    position: absolute;
    margin-left: 245px;
    margin-top: 50px;
    border: 1px solid white;
}



.hour {
    height: 150px;
    width: 10px;
    background-color: rgb(2, 35, 78);
    z-index: 5;
    position: absolute;
    margin-left: 245px;
    margin-top: 100px;
    border: 1px solid white;
}