/* General styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(to right, #4facfe, #00f2fe);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding:50px;
}

/* Container */
.container {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Title */
h1 {
    padding:30px;
    font-size: 24px;
    margin-bottom: 15px;
}

/* Search Box */
.search-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

input {
    padding: 10px;
    width: 70%;
    border-style:dotted solid ;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

button {
    padding: 10px 15px;
    border: none;
    background: #ff9800;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #e68900;
}

/* Weather Info */
.weather-info {
    display: none; /* Initially hidden */
    padding: 15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    margin-top: 10px;
}

.weather-info img {
    width: 80px;
    height: 80px;
}

.weather-info h2 {
    margin: 10px 0;
    font-size: 20px;
}

.weather-info p {
    font-size: 18px;
}
