@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600&display=swap');
.weatherWrap{
    display: grid;
    grid-area: weatherAP;
    background-image: url(../img/JHStandSeats.jpg);
    background-size: cover;
    background-position: center;
    margin-right: 1rem;
    /*place-items: center;
    /*width: 840px;
    height: 420px;*/
}

.weatherBack{
    background-color: rgb(0,0,0,.4);
    margin: 1rem 1rem;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1% 1fr 1%;
    grid-template-areas: ". weatherTitle ."
        ". weatherCITY ."
        ". weatherCURRENT ."
        /*". weatherNEWtown ."*/;
    grid-template-rows: 60px 40px 240px; /*50px;*/
}

.location{
    grid-area: weatherCITY;
}

.current{
    grid-area: weatherCURRENT;
    display: grid;
    grid-template-columns: 1% 1fr 1%;
    grid-template-areas:". weatherIMG ."
        ". weatherTEMP ."
        ". weatherWEATHER .";
    grid-template-rows: 96px 85px 60px;
}

.weatherTitle{
    grid-area: weatherTitle;
    background: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    padding-top: .5rem;
    margin: .7rem .5rem 0;
    border-radius: 8px 8px 0 0;
}

.weatherIMG{
    grid-area: weatherIMG;
    display: block;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.weatherIMG img{
    display: inline-block;
    width: 128px !important;
    height: 128px !important;
}

.weatherICON{
    display: inline-block;
    width: 128px !important;
    height: 128px !important;
}

.temp{
    grid-area: weatherTEMP;
    font-family: 'Raleway', sans-serif;
    font-size: 5rem;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
}

.weather{
    grid-area: weatherWEATHER;
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    color: #ffffff;
}

.city{
    grid-area: weatherCITY;
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    padding-top: .5rem;
}

.weatherNEWtown{
    grid-area: weatherNEWtown;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    color: #ffffff;
}

.search-box{
    grid-area: weatherNEWtown;
    font-family: 'Raleway', sans-serif;
}

.date{
    grid-area: weatherCITY;
    font-family: 'Raleway', sans-serif;
    font-size: .75rem;
    text-align: center;
    color: #ffffff;
}

/*=============================*/
/*===      MEDIA CALLS      ===*/
/*=============================*/
@media screen and (max-width: 800px) {
    
.weatherWrap{
    display: grid;
    grid-area: weatherAP;
    background-image: url(../img/JHStandSeats.jpg);
    background-size: cover;
    background-position: center;
    margin-right: .1rem;
    margin-bottom: .5rem;
    /*place-items: center;
    /*width: 840px;
    height: 420px;*/
}
}
    