* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

body {
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #00feba, #5b548a);
    overflow-x: hidden;
    overflow-y: hidden;
}

.container {
    margin: 50px 0 0 0;
    max-width: 100%;
    color: #fff;
    text-align: center
}

.search {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.search input {
    width: 75%;
    padding: 10px 0 10px 10px;
    border-radius: 20px;
    border: none;
    outline: none;
}

.search button {

    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.search img {
    width: 20px;
    height: 20px;
}

.weather .weather-icon {
    height: 20%;
    width: 15%;
    margin-top: 30px;
}

.weather .temp {
    font-size: 6rem;
}

.weather .city {
    font-size: 3rem;
    margin-top: 20px;
    color: white;
}


.col {
    width: 80%;
    margin-inline: 10%;
    display: flex;
    justify-content: space-between;

}

.col img {
    height: 30px;
}

.humadity {
    width: 20%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: larger;
}





.wind {
    width: 20%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: larger;
}

.weather {
    display: none;
}