* {
    padding: 0;
    margin: 0;
    font-family: 'poppins' sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #4555;
}

.card {
    width: 90%;
    max-width: 470px;
    background: linear-gradient(24deg, #715bec66, #060238);
    color: #ffff;
    margin: 100px 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: 18px;
}

 .search-btn{
    border: 0;
    outline: 0;
    background: #ebfffc;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor:pointer ;
} 
.search-btn.loading {
    
    background-color: #ccc;
    opacity: 0.7;
    pointer-events: none;
    transition: 0.3s;
}
.search-btn.loading::after {
    content: "unparsed text";
    font-size: 14px;
    color: #4d4153;
    background-color: #555;
}

button img {
    position: relative;
    top: 2px;
    width: 20px;
}

.wt-icon {
    width: 170px;
    margin-top: 30px;
}

.weather h1 {
    font-weight: 500;
    font-size: 70px;
}

.weather h2 {
    font-weight: 400;
    font-size: 40px;
    text-decoration: solid;
    font-family: Verdana, sans-serif;
}

.details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    margin-top: 50px;
}

.col {
    display: flex;
    align-items: center;
    text-align: left;
}

.col img {
    width: 40px;
    margin-right: 10px;
}

.humedity,
.wind {
    font-size: 24px;
    margin-top: -6px;
}