*{
    margin: 0;
    padding: 0;
}
/* body{  
    background-color: #80ed99 
    background-color:#83c5be
} */
.container{
    width: 70%;
    /* color: #fff; */
    height:750px;
    /* border: 1px solid red; */
    margin: auto;
  
    
}
.heading{
    font-size: 60px;
    text-align: center;
    text-decoration:underline;
}
input{
    /* height: 40px; */
    font-size: 30px;
    margin-top: 20px;
    width: 70%;
    margin-left: 50px;
    background-color: #f5f0f0;
    /* border-radius: 10%; */
    padding: 5px;
}
button{
    font-size: 30px;
    margin-top: 20px;
    width: 15%;
    margin-left: 30px;
    border: none;
    background-color: #f5f0f0;
    cursor: pointer;
    
    color: black;
    padding: 5px;
}
.details{
    width: 45%;
    margin: auto;
    margin-top: 5px;
    height: 600px;
    display: none;

    /* border: 1px solid black; */
}
.image{
    align-self: center;
}
.weather-details{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.weather-img-box{
    display: flex;
    justify-content: center;
    align-items: center;
}
.temp,
.cityName,
.main,
.dateAPI,
.time,
.day{
    text-align: center;

}
.cityName{
    margin-top: 10px;
}
.windSpeedImage{
    /* position: relative; */
    margin-left: 45px;
}
.windSpeed{
    margin-right: 20px;
}
.error1 {
    font-size: 25px;
    margin-left: 50px;
    margin-top: 10px;
    color: red;
    display: none;
}

.mytheme{
    background-image: url('https://t4.ftcdn.net/jpg/05/53/71/23/360_F_553712384_9ZQnDpbLqGwX8Fvv8jxEcHrRqhpVxpUr.jpg');
    background-repeat: repeat-x;
    background-size: 300%;
    animation-name: mytheme;
    animation-duration: 60s;
    animation-iteration-count: infinite;

}
@keyframes mytheme {
    0% {
        background-position-x: 0px;
    }
    100% {
        background-position-x: 1000px;
    }
    
}