body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('https://i.pinimg.com/736x/4a/96/aa/4a96aa21a30e9824cdaaa14ab7c26a5a.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay for better text readability */
    z-index: -1;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 1;
}

h1 {
    color: white;
    margin-bottom: 20px;
}

.search {
    margin-bottom: 20px;
}

#city-input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 70%;
    font-size: 16px;
}

#search-btn {
    padding: 10px;
    border: none;
    border-radius: 0 5px 5px 0;
    background: #0984e3;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

#search-btn:hover {
    background: #0652dd;
}

.weather-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    color: white;
    display: none; /* Hidden initially */
}

.icon {
    font-size: 50px;
    margin-bottom: 10px;
}

.temp {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.condition {
    font-size: 20px;
    margin-bottom: 20px;
}

.details {
    display: flex;
    justify-content: center;
}

.humidity {
    font-size: 16px;
}