*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}
.logo {
    display: block;
    margin: 2px auto;       
    width: 18%;            
    height: auto;
    object-fit: contain;     
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); 
}

.card{
    width:85%;
    max-width: 470px;
    background: linear-gradient(135deg, #23bcf4, #c4d3f3);
    color: #fff;
    margin: 6px auto 0;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
}
.search{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search input{
    border: 0;
    outline: 0;
    background: #ebfffc;
    color: #555;
    padding: 10px 25px;
    height: 60px;
    border-radius: 30px;
    flex: 1;
    margin-right: 16px;
    font-size: 16px;
}

.search button{
    border: 0;
    outline: 0;
    background: #ebfffc;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
}
.weather {
    margin-top: 30px;
}

.weather-icon {
    width: 120px;
    margin-bottom: 10px;
}

.temp {
    font-size: 48px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.city {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

.details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.col {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 12px 20px;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    justify-content: flex-start;
}

.col img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.humidity, .wind {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 2px;
}

@media (max-width: 600px) {
    .card {
        padding: 20px 10px;
    }
    .details {
        flex-direction: column;
        gap: 12px;
    }
    .col {
        justify-content: center;
    }
}
