.main-weather-container {
    width: 100%;
}

.main-weather-left {
    width: 50%;
    float: left;
    padding-left: 16px;
}

.main-weather-right {
    width: 50%;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 120px;
}

.main-weather-title {
    margin-top: 12px;
    font-size: 2rem;
}

.main-weather-subtitle {
    font-size: 1.5rem;
    margin: 15px 0 15px 0;
}

.main-weather-chance {
    margin: 8px 0 0 0;
}

.main-weather-img {
    width: 80px;
    height: 80px;
    max-width: 100%;
}

.main-weather-temps {
    clear: both;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 16px 20px 16px;
}

.main-temp-min {
    margin: 0;
    font-size: 1rem;
}

.main-temp-current {
    font-weight: bold;
    margin: 0;
    font-size: 2.5rem;
    text-align: center;
}

.main-temp-max {
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .main-weather-left {
        padding-left: 12px;
    }

    .main-weather-title {
        font-size: 1.75rem;
    }

    .main-weather-subtitle {
        font-size: 1.25rem;
    }

    .main-weather-img {
        width: 80px;
        height: 80px;
    }

    .main-weather-temps {
        padding: 8px 12px 16px 12px;
    }

    .main-temp-current {
        font-size: 2.5rem;
    }

    .main-weather-right {
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    .main-weather-container {
        width: 95%;
        margin: 0 auto;
    }

    .main-weather-left {
        padding-left: 8px;
    }

    .main-weather-title {
        font-size: 1.5rem;
    }

    .main-weather-subtitle {
        font-size: 1rem;
    }

    .main-weather-chance {
        font-size: 0.9rem;
    }

    .main-weather-img {
        width: 60px;
        height: 60px;
    }

    .main-weather-temps {
        padding: 6px 8px 12px 8px;
    }

    .main-temp-min,
    .main-temp-max {
        font-size: 0.9rem;
    }

    .main-temp-current {
        font-size: 2rem;
    }

    .main-weather-right {
        min-height: 100px;
    }
}
