@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body{
    width: 100%;
    height: 100%;
    background-image: url(images/back3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.card{
    width: 90%;
    max-width: 470px;
    background: linear-gradient(135deg,rgba(78,101,255,0.2),rgba(146,239,253,0.3));
    color: #fff;
    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;
    width: 10px;
    outline: 0;
    background: rgb(239, 231, 231);
    color: #4b4949;
    padding: 10px 25px;
    height: 60px;
    border-radius: 30px;
    flex: 1;
    margin-right: 16px;
    font-size: 25px;
    font-weight: 800;
    font-family: "Roboto", sans-serif;
}

.search button{
    border: 0;
    outline: 0;
    background: rgb(243, 235, 235);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search button img{
    width: 16px;
}

.details{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
   
}

.col{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 30px;
}

.col img{
    width: 50px;
    margin-right: 10px;
}

.weather-icon{
    width: 170px;
    margin-top: 30px;
}

.weather h1{
    font-size: 60px;
    font-weight: 500;
}

.weather h2{
    font-size: 60px;
    font-weight: 500;
}
.weather{
    display: none;
}
