*{
    padding: 0;
    margin: 0;
}
body{
    overflow: hidden;
}
img{
    height: 755px;
    width: 100%;
}
.clock{
    display:block;
    position: absolute;
    top: 25%;
    left: 55%;
    transform: translate(-50%,-50%);
    width: 200px;
    height: 200px;
    border: 1px solid hsl(233, 47%, 7%);
    border-radius: 200px;
    background: url(./images/clock.png);
    background-size: cover;
    box-shadow: -0px 2px 0 #0f365a, inset 0 0 90px rgba(72, 122, 156, 0.5);
}
.clock1{
    display:block;
    position: absolute;
    top: 25%;
    left: 55%;
    transform: translate(-50%,-50%);
    width: 220px;
    height: 220px;
    border: 5px solid hsl(233, 47%, 7%);
    border-radius: 100px;
    background-size: cover;
    box-shadow: -2px 2px 0 #0f365a, inset 0 0 50px rgba(9, 80, 128, 0.5);
}
span{
    display: block;
    position: absolute;
    top: 25%;
    left: 55%;
    transform: translate(-50%,-50%);
    width: 10px;
    height: 10px;
    background-color: hsl(233, 47%, 7%);
    border-radius: 50px;
    z-index: 2;
}
.picture{
    display:flex;
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%,-50%);
    width: 220px;
    height: 220px;
    border: 1px solid hsl(233, 47%, 7%);
    border-radius: 80px;
    background: url(./images/illustration2.jpg);
    background-size: cover;
    box-shadow: 0px 2px 0 #0f365a, inset 0 0 50px rgba(9, 80, 128, 0.5);
}
.picture1{
    display:flex;
    position: absolute;
    top: 70%;
    right: 50%;
    transform: translate(-50%,-50%);
    width: 230px;
    height: 230px;
    border-radius: 10px; 
    background: url(./images/illustration1.jpg);
    background-size: cover;
    box-shadow: 0px 2px 0 #0f365a, inset 0 0 50px rgba(9, 80, 128, 0.5);
}

.clock::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 6px;
    background-color: #0f365a;
    border-radius: 3px;
    animation: animate 4s linear infinite;
    transform-origin: left;
}
.clock::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 6px;
    background-color: #0f365a;
    border-radius: 3px;
    animation: animate 48s linear infinite;
    transform-origin: left;
}

@keyframes animate{
    0%{
        transform: rotate(-90deg);
    }
    100%{
        transform: rotate(270deg);
    }
}