* {
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
html {
    font-size: 100%;
}
body {
    margin: 0;
    padding: 0;
}
img {
    width: 100%;
    max-width: 260px;
    height: 220px;
    margin: 20px 0;
    z-index: 2;
}
.weather-wrap, .weather-forecast {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.weather-forecast {
    width: 80vw;
}
.weather-container, .weather-forecast .weather-container {
    width: 19.80vw;
}
.weather-container .weather-main {
    height: 435px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    background-color: #b7cafd;
}
.weather-container .weather-main.current {
    background-color: #8188A6;
} 
.weather-container .weather-main.current:after {
    content: " ";
    position: absolute;
    top: 55px;
    width: 205px;
    height: 205px;
    background: #B7CAFF;
    border-radius: 100px;
    z-index: 1;
}
.weather-container .weather-main .weather-title {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    align-items: center;
    font-size: 38px;
    margin-top: 20px;
    color: #fff;
}
.weather-container .weather-main .weather-title h3, .weather-container .weather-main .weather-title p {
    margin: 0;
}
.weather-container .weather-content #weather-temperature, .weather-container .weather-content .weather-temperature {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
    font-size: 154px;
    color: #8288a6;
    background-color: #F3F2EF;
}
.weather-content-min-max {
    display: flex;
    flex-direction: row;
}
.weather-content-min-max span {
    font-size: 55px;
}
.weather-content-min-max #min, .weather-content-min-max #max, .weather-content-min-max .min, .weather-content-min-max .max {
    width: 50%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    line-height: 1;
    font-weight: 700;
    color: #fff;
}
.weather-content-min-max #min, .weather-content-min-max .min {
    background-color: #B7CAFD;
}
.weather-content-min-max #max, .weather-content-min-max .max {
    background-color: #8188A6;
}
.weather-content-details .weather-content-details-container h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    width: 100%;
    height: 100px;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}
.weather-content-details .weather-content-details-container span {
    font-size: 58px;
    font-weight: 700;
}
.weather-content-details .weather-content-details-container h3:nth-of-type(2).current {
    background-color: #8288a6;
}
.weather-content-details .weather-content-details-container h3:nth-of-type(1) {
    color: #272B2E;
    background-color: #f3f2ef;
}
.weather-content-details .weather-content-details-container h3:nth-of-type(2) {
    color: #F5F5F5;
    background-color: #8288a6;
}


@media screen and (max-width: 1440px) {
    .weather-wrap, .weather-forecast {
        flex-direction: column;
    }
    .weather-container, .weather-forecast .weather-container {
        width: 100vw;
    }
    .weather-container {
        margin-bottom: 40px;
    }
}