body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #74ebd5 0%, #9face6 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.weather-app {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 350px;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    color: #333;
}

.search-box {
    margin-bottom: 20px;
}

input[type="text"] {
    padding: 10px;
    width: 70%;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
}

button {
    padding: 10px 15px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    margin-left: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #357ABD;
}

.weather-card {
    padding: 20px;
    border-radius: 15px;
    background-color: #f0f8ff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.weather-card h2 {
    margin-top: 0;
    color: #222;
}

.weather-card p {
    font-size: 18px;
    color: #444;
    margin: 8px 0;
}

