html,
body {
    padding: 0;
    margin: 0;
    font-family: system-ui;
    background: #fff;

    margin: 0 auto;
}

.wrapper {
    display: flex;
}

h2 {
    margin: 16px 24px;
}

.rain-map {
    max-width: 100%;
    /* background: url(/radar-test.png); */
    height: 100dvh;
    width: 30dvw;
    background-size: cover;
    background-position: center;
    /* background: #aaf; */
}

.rain-map img {
    height: 100dvh;
    mix-blend-mode: multiply;
    position: fixed;
}

.forecast-hours {
    margin: 0 auto;
    max-width: 400px;
    width: 100vw;
}
.forecast-hour {
    border-bottom: 1px solid #aaa;
    padding: 8px 16px;
    width: 100%;
    display: flex;
    gap: 16px;
    box-sizing: border-box;
    height: 48px;
    line-height: 32px;
}

.hour-time {
    /* flex: 1 1; */
}

.hour-temp {
    font-weight: 800;
    /* flex: 1 1; */
    text-align: center;
}

.hour-symbol img {
    width: 32px;
    height: 32px;
}
