body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff; 
    color: #333;
    margin: 0;
    padding: 20px;
}

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

header h1 {
    text-align: center;
    color: #005a9c; 
}

h2 {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    color: #005a9c;
}

.forecast-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.day-forecast {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 18%; 
}

.day-forecast h3 {
    margin-top: 0;
}

.weather-icon {
    font-size: 2.5em; 
}

footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #777;
}