body {
    font-family: Arial, sans-serif; /*fixed */
    background: linear-gradient(to right, #74ebd5, #9face6);/* fixed */
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.weather-app {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    width: 350px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: transform 0.2s ease-in-out;
}
.weather-app:hover {
    transform: scale(1.03);/* small hover animation */   
}
h1{
    margin-bottom: 20px;
    color: #333;
}
.search-box {
    margin-bottom: 20px;
}
.search-box input {
    padding: 10px;
    width: 200px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}
.search-box input:focus{
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.4);
}
.search-box button {
    padding: 10px 15px;
    border: none;
    background: #4CAF50;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}
.search-box button:hover {
    background: #45a049;
}
.weather-result{
    font-size: 18px;
    margin-top: 20px;
    color: #444;
}
.weather-result p{
    margin: 8px 0;
}