*{
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
body{
    background: #9bcdd2;
}
#weather{
    width: max-content;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);

}
#weather h1{
    font-weight: 700;
    font-size: 40px;
    color: rgb(14, 41, 84);
    text-align: center;
    margin-bottom: 20px;

}
.weather-wrapper{
    width: 350px;
    height: max-content;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow:  6px 6px 0 3px #0E2954;
    background: rgba(255, 255, 255, 0.4);
}
.input-box{
    width: 100%;
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.input-box input{
    width: 70%;
    height: 40px;
    border: none;
    border-radius: 10px 0px 0px 10px;
    padding-left: 10px;
    font-size: 20px;
    border: none;
    
}
.input-box input:focus{
    outline: none;
}
form button{
    border: none;
}
.input-box i{
    width: 30px;
    background: white;
    height: 40px;
    border-radius: 0px 10px 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.InsideDetails{
    width: 100%;
    height: 100%;
}
.weather-Details{
    width: 100%;
    height: 350px;
    margin-top: 50px;
    border-bottom: 0px 0px 10px 10px;
    overflow: hidden;
    position: relative;
}
.circle{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 15%;
    left: 50%;
    transform: translatex(-50%);
    border-radius: 100% 100% 0% 0%;

}
.circle::after{
    content: '';
    width: 500px;
    height: 500px;
    display: inline-block;
    position: relative;
    top: 0px;
    left: 50%;
    transform: translatex(-50%);
    background: linear-gradient(#0352978c,rgba(255, 255, 255, 0.562));
    border-radius: 100% 100% 0% 0%;
    z-index: -1;
    
}
.circle figure{
    width: 150px;
    height: max-content;
    position: absolute;
    top: -70px;
    right: 50%;
    transform: translateX(50%);
}
.circle figure img{
    width: 150px;
    height: auto;
}
.temprature{
    width: 100%;
    height: max-content;
    text-align: center;
    position: absolute;
    top: 70px;
}
.temprature h2{
    font-size: 70px;
    color: white;
}
.temprature h2 sup{
    position: absolute;
}
.cityName{
    font-weight: 700px;
    font-size: 30px;
    color: white;
}
.MoreAboutWeater{
    width: 100%;
    position: absolute;
    top: 210px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.MoreAboutWeater p{
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: rgba(61, 60, 60, 0.816);
}
.MoreAboutWeater p span{
    font-weight: 700;
    font-size: 25px;
    color: white;

}