body {
    font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f0f0f5;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.container img {
    display: block;
    margin: 0 auto 20px; /* Center the image and add some margin below it */
}

h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 24px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

h3 {
    font-size: 22px;
    color: #333;
    margin-top: 10px;
    margin-bottom: 5px;
}

p {
    margin: 10px 0;
    font-size: 18px;
}

.forecast {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.forecast div {
    flex: 1 1 calc(50% - 10px);
    margin: 10px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 28px;
}

.icon.sunny {
    color: #FFD700; /* Gold for sunny */
}

.icon.cloudy {
    color: #B0C4DE; /* LightSteelBlue for cloudy */
}

.icon.rainy {
    color: #1E90FF; /* DodgerBlue for rainy */
}

.icon.snowy {
    color: #ADD8E6; /* LightBlue for snowy */
}

.icon.stormy {
    color: #778899; /* LightSlateGray for stormy */
}

.icon.temperature {
    color: #FF6000; /* OrangeRed for temperature */
}

.icon.humidity {
    color: #1E90FF; /* DarkTurquoise for humidity */
}

.icon.windspeed {
    color: #4682B4; /* SteelBlue for windspeed */
}

@media (max-width: 600px) {
    .forecast div {
        flex: 1 1 100%;
    }
}