* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
}

h1 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.search-box {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

#cityInput {
    padding: 0.5rem;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 70%;
    font-size: 1rem;
}

button {
    padding: 0.5rem 1rem;
    border: none;
    background: #2575fc;
    color: white;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background: #1b5fd9;
}

.weather-info {
    margin-top: 1.5rem;
}

.weather-info h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.weather-info p {
    font-size: 1rem;
    margin: 0.5rem 0;
}

.weather-info img {
    width: 50px;
    height: 50px;
    margin-top: 0.5rem;
}
