#forecast{
    display:flex;
    justify-content: space-between;
    /* box-sizing: border-box; */
}

.day {
    flex-grow: 1;
    text-align: center;
    /* border:1px dotted peru; */
    margin:1px;  
}

.date{
    line-height: 18px;
    font-size: 16px;
    padding: 5px;
    background-color: whitesmoke;
}
.l{  font-size: 22px; }
.j{ 
    line-height: 24px;
    font-size: 24px; 
    font-weight: 600;
    color:crimson;
}
/* .F{ }
.HI{ } */

.temp{
    background-color:skyblue;
    color:white;
    font-weight: 400;
    margin-top: 1px;
}
.tempMaxMin{ background-color:rgb(235, 235, 208); margin-top: 1px;}
.min{ font-size: 14px; color:royalblue;}
.max{ font-size: 14px; color:tomato;}
.tempFeel{
    background-color: darkgrey;
    color: white;
    font-size: 14px;
}
.icon{
    background-color:white;
    /* border:2px solid brown;
    border-radius: 5px; */
    font-size:50px;
    width:100%;
    text-align: center;
    vertical-align: middle;
    line-height: 100px;
    margin-top: 1px;
}
.windDir{
    font-size: xx-large;
    /* color:crimson; */
    background-color:rgb(235, 235, 208);
    margin-top: 1px;
    line-height: 32px;
}
.winSpeed{
    font-size: small;
    background-color: whitesmoke;
}
.gust{
    font-size: small;
    background-color:slategray;
    color: whitesmoke;
    font-weight: 600;
}
.humidity{
    font-size:small;
    background-color:whitesmoke;
    margin-top: 1px;
}
.pressure{
    font-size:small;
    background-color: darkslategray;
    color:white;
}
.visibility{
    font-size: small;
    background-color: whitesmoke;
}

@media screen and (max-width: 700px) {
    #forecast{flex-direction: column;}
    .day{margin: 20px;}
}