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

.container {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.search {
    margin-bottom: 20px;
}

#city {
    padding: 10px;
    border: 1px solid #000000;
    border-radius: 5px;
    width: 200px;
}

button {
    padding: 10px 20px;
    border: none;
    background: #007BFF;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #0056b3;
}

#suggestions {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    background: rgb(0, 0, 0);
    width: 200px;
    
    z-index: 1000;
}

#suggestions li {
    padding: 10px;
    cursor: pointer;
}

#suggestions li:hover {
    background: #f0f0f0;
}

.weather {
    margin-top: 20px;
}

#location {
    font-size: 24px;
    font-weight: bold;
}

#temperature {
    font-size: 20px;
    margin: 10px 0;
}

#wind {
    font-size: 16px;
    color: #ddd;
}
