
        body {
            font-family: 'Times New Roman', Times, serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            background: linear-gradient(to bottom, #4facfe, #00f2fe);
            color: #333;
        }
        .weather-app {
            text-align: center;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .weather-app input, .weather-app button {
            margin: 10px 0;
            padding: 10px;
            font-size: 16px;
        }
        .weather-app button {
            background: darkblue;
            color: white;
            border: none;
            cursor: pointer;
        }
        .weather-details {
            margin-top: 20px;
        }
    