
#weather-container{
    height: 700px;
    background-color: rgba(240, 248, 255, 0.288);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.weather-img{
    background-color: rgba(240, 248, 255, 0.425);
    margin-top: 80px;
    margin-bottom: 20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.location{
    width: 100px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.days{
    margin-bottom: 20px;
}

.weather-description{
    margin-bottom: 20px;
    background-color: aliceblue;
    width: 400px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.temp-description{
    margin-bottom: 20px;
    width: 400px;
    height: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.temp-description > div{
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    /* background-color: aliceblue;
    margin: 5px; */
    align-items: center;
}


.temp-description > div span{
    margin-bottom: 10px;
}
