
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            background: linear-gradient(to right, #6dd5ed, #2193b0);
            color: white;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .search-container {
            position: relative;
            display: flex;
            align-items: center;
        }

        input {
            padding: 10px;
            width: 250px;
            border-radius: 5px;
            border: none;
            font-size: 16px;
        }

        .menu-btn {
            background: transparent;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: white;
            margin-left: 10px;
        }

        .suggestions {
            position: absolute;
            top: 45px;
            left: 350px;
            background: rgba(255, 255, 255, 0.9);
            color: black;
            width: 250px;
            border-radius: 5px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            max-height: 300px;
            overflow-y: auto;
            display: none;
            text-align: left;
        }

        .suggestions p {
            margin: 0;
            padding: 10px;
            cursor: pointer;
            border-bottom: 1px solid #ddd;
        }

        .suggestions p:hover {
            background: #f1f1f1;
        }

        button {
            padding: 10px 20px;
            margin-top: 20px;
            margin-left: 10px;
            border: none;
            border-radius: 5px;
            background: #ff5722;
            color: white;
            cursor: pointer;
            transition: 0.3s;
        }

        button:hover {
            background: #e64a19;
            transform: scale(1.1);
        }

        .weather {
            margin-top: 20px;
            background: rgba(255, 255, 255, 0.2);
            padding: 20px;
            border-radius: 10px;
            display: inline-block;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            animation: fadeIn 1s ease-in-out;
            position: relative;
            z-index: 1;
            transition: margin-top 0.3s ease-in-out;
        }

        h2 {
            font-size: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        img {
            width: 80px;
            animation: glow 2s infinite alternate;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes glow {
            from { filter: brightness(1); }
            to { filter: brightness(1.5); }
        }
@media screen and (max-width: 480px) {
    .suggestions{
        left: 100px;
    }
}
