body {
    font-family: system-ui, sans-serif;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    box-sizing: border-box;
}

/* Left side = Temperature */
.temp-display {
    flex: 1;
    font-size: 30vw;
    font-weight: 700;
    text-align: left;
    line-height: 1;
    padding-left: 2vw;
}

/* Right side = Details */
.details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-size: 5vh;
    padding-right: 2vw;
    gap: 2.5rem;
}

/* Background color themes based on weather */
body.night,
body.storm,
body.rain,
body.snow,
body.cloudy-night {
    color: #f0f0f0;
}

body.sunny,
body.default,
body.cloudy {
    color: #fff;
}