        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: #87CEEB;
            font-family: Arial, sans-serif;
            padding: 20px;
        }
        
        .title {
            text-align: center;
            font-size: 32px;
            color: #333;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        .subtitle {
            text-align: center;
            font-size: 20px;
            color: #555;
            margin-bottom: 20px;
        }

        .container {
            width: 90%;
            max-width: 800px;
            margin: 0 auto 30px auto;
            background-color: white;
            border: 2px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .weather-grid {
            width: 100%;
            border-collapse: collapse;
        }
        
        .weather-cell {
            width: 33.33%;
            padding: 15px;
            text-align: center;
            border: 1px solid #e0e0e0;
            vertical-align: top;
        }
        
        .weather-cell.left-align {
            text-align: left;
            padding-left: 20px;
        }
        
        .weather-cell h3 {
            font-size: 18px;
            color: #555;
            margin-bottom: 10px;
            font-weight: normal;
        }
        
        .weather-cell h4 {
            font-size: 24px;
            color: #2196F3;
            font-weight: bold;
        }
        
        .full-width {
            width: 100%;
        }
        
        .image-container {
            width: 90%;
            max-width: 1200px;
            margin: 30px auto;
        }
        
        .image-row {
            width: 100%;
        }
        
        .image-row table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .image-section {
            width: 50%;
            padding: 10px;
            text-align: center;
            vertical-align: top;
        }
        
        .image-section h2 {
            font-size: 24px;
            color: #333;
            margin-bottom: 15px;
            background-color: white;
            padding: 10px;
            border-radius: 8px;
            border: 2px solid #ddd;
        }
        
        .image-section img {
            max-width: 100%;
            height: auto;
            border: 2px solid #ddd;
            border-radius: 8px;
            background-color: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        /* Responsive for smaller screens */
        @media (max-width: 600px) {
            .weather-cell {
                display: block;
                width: 100%;
            }
            
            .title {
                font-size: 24px;
            }
            
            .weather-cell h3 {
                font-size: 16px;
            }
            
            .weather-cell h4 {
                font-size: 20px;
            }
        }
.back-button {
    display: inline-block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #2196F3;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    top: 30px;
}