body::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
    opacity: 1;
    /* background: url("https://cdn.pixabay.com/photo/2018/04/22/23/27/grass-3342774_960_720.jpg") no-repeat center center/cover; */
}
body{
    background: #6f0162; 
    background: rgb(238,174,202);
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    /* position :absolute; */
    left: 0px;
    right: 0px;
    /* background-color: black; */
}

#box{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #858794;
    background: rgb(238,174,202);
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    height: 90px;
    border-radius: 5px;
}


#box > div> input{
    width: 250px;
    height: 35px;
    font-size: 18px;
    padding-left: 10px;
    margin-left: 10px;
    border-radius: 10px;
  
}

#box > div > button{
    height: 40px;
    width: 80px;
    background-color: rgb(46, 43, 43);
    color: white;
    border-radius: 10px;

}

#box > div{
    margin-top: 20px;
}

.gmap_canvas {
    overflow:hidden;
    background:none!important;
    width:600px;
    height:300px;
    border-radius: 10px;
    margin-top: 40px;
    /* border: 1px solid red; */
}

.mapouter{
    position:relative;
    text-align:right;
    height:300px;
    width:700px;
}

#weather{
    display: flex;
    justify-content: space-evenly;
    justify-content: center;
    width: 90%;
    margin: auto;
    /* border: 1px solid red; */
    margin-top: 170px;   
}


#container{
    width: 400px;
    height: 400px;
    margin-right: 100px;
    /* border: 1px solid red; */
    color: black;
    font-family: sans-serif;
    padding: 15px;
    font-weight: bold;
}

img{
    width: 50px;
    height: 50px;
    /* border: 1px solid red; */
}

/* //////////////////////......7 days weather.......////////////////////////////////// */



#days7{
    color: #090979;
    font-weight: bold;
    font-family: sans-serif;
    margin-top: 150px;
}
#box1{
        width: 100%;
        height: 400px;
        margin: auto;
        border-radius: 10px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        /* background:url("https://cdn.pixabay.com/photo/2018/08/21/23/29/forest-3622519_960_720.jpg") no-repeat center center/cover; */
    } 
    #box1 > div{
        /* border: 1px solid red; */
        box-shadow: 0px 0px 5px 0px;
        min-width: 130px;
        max-width: 200px;
        height: 270px;
        margin: 10px;
        text-align: center;
        border-radius: 10px;
        margin-top: 50px;

    }


    /* medium screen */
    @media screen and (min-width : 651px) and (max-width : 1024px) {

        #weather{
            display: block;
            margin-top: 120px;
        }

        #container{
            font-size: 16px;
            margin-top: 140px;
        }
        .gmap_canvas{
            width:500px;
            height:240px;
            border-radius: 10px;
            margin-left: 10px;

        }
        #city{
            width: 100px;
            height: 25px;
            /* border: 1px solid red; */
        }
    }
    /* small screen */
    @media screen and (min-width : 320px) and (max-width : 650px) {
        #box1{
            display: flex;
            flex-wrap: wrap;
        }

        #weather{
            display: block;
            margin-top: 120px;
            /* border: 1px solid red; */
        }

        #container{
            font-size: 14px;
            margin-top: 100px;
        }
        .gmap_canvas{
            margin-left: 5px;
            width:350px;
            height:240px;
            border-radius: 10px;
            margin-left: 10px;

        }
        #city{
            width: 80px;
            height: 25px;
        }
    }

    @media screen and (min-width : 150px) and (max-width : 319px){
        .gmap_canvas{
            width:260px;
            height:200px;
            border-radius: 10px;
            margin-left: 5px;
        }
        #city{
            width: 80px;
            height: 15px;
        }
    }
