* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    width: 350px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.search {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.search input {
    padding: 10px;
    width: 70%;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search button {
    padding: 10px;
    border: none;
    background-color: #0072ff;
    color: white;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}

.weather .weather-icon {
    width: 100px;
    margin: 10px 0;
}

.weather h1, .weather h2 {
    margin: 5px 0;
}

.details {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.details .col p:first-child {
    font-size: 1.2em;
    font-weight: bold;
}
