*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    font-family: sans-serif;
}

#navbar{
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: center;
    /* border: 3px solid black; */
    border-top: none;
    background-color: aliceblue;
    z-index: 3;
    position: sticky;
    top: 0;
}

#navbar>img{
    width: 45px;
    height: 45px;
    margin-right: 300px;
    
}

input:focus{
    background-color: rgb(238, 242, 242);
}

.mapouter{
    position:relative;
    text-align:right;
    height:300px;
    width:400px;
    border: 2px solid black;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 300px;
    width: 400px;
}

#container{
    display: flex;
    background-color: rgb(230, 233, 236);
    height: 100vh;
    justify-content: space-around;
    padding-top: 40px;
    
}

input{
    width: 36%;
    height: 50px;
    padding-left: 20px;
    font-size: 18px;
    border-right: none;
    margin-left: -20px;
    
}

.sun{
    width: 20px;
    height: 20px;
}

button{
    width: 10%;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
    background-color: black;
    color: white;
    margin-right: 20px;
}

#weather{
    border: 2px solid black;
    border-right:none;
    border-bottom: none;
    height: 450px;
    display: grid;
    justify-content: center;
    width: 300px;
    background-color: lightblue;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

#forecast{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    border: 1px solid black;
}

#forecast>div{
    border: 1px solid black;
    text-align: center;
}