*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: black;
}

.card{
    border-radius: 2rem;
    width: 90%;
    max-width: 470px;
    margin: 100px auto;
    padding: 40px 35px;
    text-align: center;
    background: linear-gradient(rgb(92, 218, 186) , rgb(67, 161, 177) , rgb(21, 56, 151));
}
.search{
    width:100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
   
}
.search input{
   border: 0;
   outline: 0;
   padding: 10px 25px;
   height: 50px;
   border-radius: 30px;
   flex:1;
   margin-right: 16px;
   font-size: larger;
}

.temp{
    font-weight: 500;
    font-size: 4.5rem;
}

.city {
    font-size: 2rem;
}
.search button{
    cursor: pointer;
    border: 0;
    outline: 0;
    /* border-radius: 70%; */
    font-size: 1.42rem;
    padding: .5rem;
    border-radius: 1rem;
}

.details{
    margin-top:2rem ;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.weather{
    display: none;
    color: white;
}

.col {
    /* margin-left: 2rem; */
}
.col img{
    width: 40px;
}

.error {
    margin: .1rem;
    text-align: left;
    padding-left: .6rem;
    display:none;
    text-shadow: rgb(174, 255, 0);
}