*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    outline: none;
}

body{
    background: #0b131e;
    background: #010a19;
    background: #031636;
    /* color: white; */
}
main{
    width: 100%;
    height: 100vh;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
}
#form {
    /* border: 1px solid; */
    text-align: center;
    margin: 20px 0px;
}

#form #searchbox {
    font-size: 15px;
    padding: 5px 10px;
    width: 260px;
    height: 30px;
    /* outline: auto; */
    border: 0px;
    /* border-bottom: 2px solid; */
    /* border: 2px solid; */
    /* border-radius: 7px; */
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
#form #searchbox:hover{
    border: 2px solid #15c5f6;
    
}

/* #form #searchbtn {
    padding: 5px;
    width:70px;
    border-radius: 8px;

} */
#searchbtn {
    font-size: 17px;
    font-weight: 700;
    /* border: 3px solid; */
    /* border-radius: 8px; */
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: white;
    text-align: center;
    margin: 20px 0px;
    padding: 5px 13px;
    height: 30px;
    outline: none;
    border: 0px;
    background: #15c5f6;
    /* text-transform: uppercase; */
    background-image: linear-gradient( #15c5f6, #0d5bc3);

}
#searchbtn:hover {
    background: #0c95ba;
    background: #15c5f6;
    background: #0078d4;

    outline: transparent;
    cursor: pointer;
}


/* ===================================== */
#input_div{
    display: flex;
    height: 70px;
    /* flex-direction: column; */
    /* margin-left: 10px; */
}
#div{
    /* border: 1px solid; */
    text-align: center;
    width: 86vw;
    height: 86vh;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    background: indianred;
    background: #202b3b;
    border-radius: 10px;
    padding-top: 20px;
    box-shadow: 0px 0px 20px 15px black;
    box-shadow: 0px 7px 26px 5px #000000;
    background-image: linear-gradient( #0b131e, #152a46);
    background-image: linear-gradient( #15c5f6, #1278fd);
    background-image: linear-gradient( #15c5f6, #0d55b4);
    /* #15c5f6  #1278fd  #010a19 */
}

#div #city{
    font-size: 50px;
    font-weight: bold;

}

#div #img, #img_1{
    width: 18%;
    margin: 10px 0px;
}

#div #temp{
    font-size: 40px;
    font-weight: bold;
}

#div #sunny{
    font-size: 20px;
    font-weight: bold;

}

/* =================================================== */

@media (max-width: 400px) {
    #form #searchbox {
        width: 190px;
    }
    #div #city {
        font-size: 32px;
    }
    #div #img {
        width: 30%;
    }

    #img_1 {
        width: 45%;
    }
    

    #div2 {
        margin: 20px 0px;
    }
    #div2 div{
        font-size: 20px;
    }
    #div2 p{
        font-size: 25px;
    }
}

/* =============================================================== */

#div2{
    display: flex;
    margin: 20px 0px
}
#div2 div{
    display: none;
    font-size: 20px;
}

#div2 h3{
        padding: 0px 20px;
}

#div2 p{
    font-size: 25px;
}


