* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* Adding black as a background color and seeting font family s poppins in whole html doc*/
html{
    font-family: poppins;
}


/* Added width and height too all img element*/
img{width: 100%;
    height: auto;}

#heading-section{
    background-color: rgb(45, 84, 255);
    display: flex;
    justify-content: center;
    color: white;
    padding: 10px 5px 10px 5px;
}

#data-section{
    display: flex;
    flex-wrap: wrap;
    column-gap: 50px;
    padding: 20px 50px 50px 50px;
}

#form-search-div{
    display: flex;
    flex-direction: column;
    flex: 1;
}

input{
    width: 100%;
    padding: 6px 0px 6px 4px;
}

#search-btn{
    margin-top: 10px;
    background-color: rgb(45, 84, 255);
    color: white;
    border: solid 1px rgb(45, 84, 255);
    padding: 6px 0px 6px 0px;
    width: 100%;
    cursor: pointer;
}

#main-data-div{
    display: none;
    flex-direction: column;
    flex: 2;
}

#main-data-div-first{
    border: solid 2px rgb(45, 84, 225);
    border-radius: 5px;
    padding: 10px 10px 10px 10px;
    margin-top: 50px;
}

#city-name-date{
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    align-items: center;
}

#city-name-date h3{
    font-size: 40px;
    font-weight: 700;
    color: rgb(45, 84, 225);
}

#current-date{
    font-size: 25px;
    font-weight: 600;
}

#icon-img{
    width: 100px !important;
}

#weather-detail{
    padding: 12px;
}

div#weather-detail p{
    font-size: 24px;
    font-weight: 500;
}

#future-forecast-div{
    padding-bottom: 100px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

#future-forecast-div h4{
    font-size: 35px;
    font-weight: 700;
    color: rgb(45, 84, 225);
}

#five-day-forcast-div{
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    row-gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}


.card{
    background-color:  rgb(45, 84, 225);
    box-shadow: 0px 4px 10px 3px rgb(0 0 0 / 20%);
}
.future-date{
    font-size: 23px;
    font-weight: 700;
    color: white;
    margin: 15px 10px 0px 15px;
}

.icon-img{
    width: 100px !important;
}
.card-text-temp{
    font-size: 19px;
    font-weight: 400;
    color: white;
}

.card-text-wind{
    font-size: 19px;
    font-weight: 400;
    color: white;
}

.card-text-humidity{
    font-size: 19px;
    font-weight: 400;
    color: white;
}