@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

}

.weather_app_card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.card {
    width: 340px;
    height: 90px;
    background: linear-gradient(160deg, #3cd3ad, #4cb8c4, #3f51b5);
    border-radius: 10px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* .weather_app_card h2 {
    text-align: center;
    padding: 20px 0;
    color: #000000;
} */

.top_search {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.top_search input {
    padding: 10px;
    border: none;
    border-radius: 10px;
    width: 80%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.top_search input:focus {
    /* border: 1px solid #3cd3ad; */
    border: none;
    outline: none;
}

.top_search .search {

    border-radius: 50%;
    border: none;
    background-color: #fff;
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: center;


}

.top_search .search:focus {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.top_search .search i {
    font-size: 18px;
    margin: 0;
}

.status_img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.main_text
{
    text-align: center;
    font-weight: 300;
    margin-bottom: 10px;
}
.main_text h4
{
    font-size: 36px;
    color: #fff;
}
.main_text h3
{
    font-size: 26px;
     color: #fff;
     font-weight: 400;
}

.foote_content
{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}
.left ,.right
{
    display: flex;
    align-items: center;
    color: #fff;
}
#error
{

    color: #ff2828;
}
.wrapper
{
    display: none;
}