*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
}
html {
    /* background-image: url(./joeyjazz-1664789015284-8878.jpg); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
}

body{
    font-family: economica;
    background-color: #3b3e41;
}

.container{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.clockContainer{
    height: 300px;
    width: 300px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50%;
    border: 3px solid blue ;
    z-index: 99999999999999999999;
    
}

.hours {
    padding: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 2px solid yellow;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background-color: #fcfcfc;

}

.hours li{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 50%;
    margin: auto;
    transform-origin: bottom;
    
}

.hours li span{
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: relative;
    transform: translateX(-50%) translateY(10px) rotate(-90deg);
    
} 
.minutes, .seconds, .temp, .hand{
    padding: 0;
    position: absolute;
    top: -50%;
    bottom: -50%;
    left: -50%;
    right: -50%;
    margin: auto;
}
.minutes, .seconds{
    transition: transform linear  0.3s;
}

.minutes {
    width: 110%;
    height: 110%;
    border-radius: 50%;
    background-color: rgb(86, 77, 77);
    color: #fcfcfc;
    z-index: -1;
}

.minutes li ,.seconds li, .temp li,.hours li::after,.minutes li::after,.seconds li::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 50%;
    margin: auto;
    transform-origin: bottom;
    
}

.minutes li span, .seconds li span, .temp li span{
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    width: 20px;
    height: 20px;
    line-height: 20px;
    position: relative;
    transform: translateX(-50%) translateY(5px) rotate(-90deg);
    
} 
.hours li::after {
    content: "";
    width: 2px;
    height: 15px;
    background-color:black;
    transform: translateX(-1px)  translateY(5px) 
}
.minutes li::after {
    content: "";
    width: 3px;
    height: 3px;
    background-color:#fcfcfc;
    border-radius: 50%;
    transform: translateX(-40%) 
}
.minutes li:nth-of-type(5n+1):after {
    content: "";
    width: 3px;
    height: 5px;
    background-color:#fcfcfc;
    border-radius: 0;
    transform: translateX(-30%) 
}
.seconds{
    width: 130%;
    height: 130%;
    border-radius: 50%;
    background-color: #fcfcfc;
    z-index: -2;
    color: black;
}
.seconds li::after {
    content: "";
    width: 3px;
    height: 3px;
    background-color:black;
    border-radius: 50%;
    transform: translateX(-40%) 
}
.temp{
    width: 150%;
    height: 150%;
    border-radius: 50%;
    background: linear-gradient(10deg,rgb(255, 0, 0) ,rgb(0, 157, 255));
    z-index: -3;
    color: black;
    transition: all linear 2s;
}
.hand li {
    position: absolute;
    top: -37%;
    bottom: 0;
    left: 0;
    right: 0;
    width: 3px;
    height: 37%;
    margin: auto;
    background-color: red;
    transform-origin: bottom;
    transform: rotate(90deg);
    border-top-right-radius: 60%;
    border-top-left-radius: 60%;
    
}

.screen {
    position: absolute;
    top: -150%;
    bottom: -150%;
    left: -150%;
    right: -150%;
    width: 150%;
    height: 150%;
    margin: auto;
    border: 1px solid black;
    border-radius: 50%;
    background:linear-gradient(-90deg , transparent 49%, black 50% );
    text-align: center;
    color: #fcfcfc;
    display: flex ;
    align-items: center;
    justify-content: center;
    z-index: 7;

}

.screen::after {
    content: '℃';
    position: absolute;
    padding: 0;
    margin: auto;
    top: 50%;
    bottom: 50%;
    left: 101%;
    right: 150%;
    color: #f8f3f3;
    font-size: 1rem;
    font-weight: 600;
    z-index: 121;
    transform: translateY(-7px);
}

.screen::before {
    content: " ";
    position: absolute;
    width: 100%;
    height:100%;
    left: -6%;
    right: 0;
    top: -5%;
    bottom:30% ;
    border:28px solid rgb(247, 4, 4);
    border-radius: 50%;
    border-top-color:black;
    border-right-color:black;
   
    z-index: 100;
    transform: translateY(-6px) rotate(45deg);
}

.weatherImg {
    width: 100px;
    height: 100px;
    background-color: #2e4364;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.weatherImg img {
    width: 80px;
    height: 80px;
 
}

.weatherDetail {
    width: 150px;
    height: 100px;
    background-color: black;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left:10px;
    transition: all 2s;
}

.dateDetail {
    width: 150px;
    height: 50px;
    background-color: black;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left:14%;
    right: 30%;
    top: 15%;
    transition: all 2s;
    color:white;
    /* background-color: aqua; */
}
.weekDay {
    width: 150px;
    height: 50px;
    background-color: black;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left:15%;
    right: 85%;
    bottom: 15%;
    transition: all 2s;
    color:white;
    /* background-color: aqua; */
}