@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");

* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(300deg, #90a3c2 ,
 #bfc0c0); 
    font-family: 'Poppins' , sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    min-height: 100vh;

}

input { 

    background-color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-family: inherit;
    box-shadow: 0 4px 10px rgba(0 , 0 , 0 , 0.2);
    padding: 1rem;
    min-width: 300px;
}
input:focus { 
    outline: none;
}

.weather { 
    font-size: 2rem;
    text-align: center;    
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
    
}
.weather h2 { 
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.countrys { 
max-height: 200px;
width: 300px;
overflow: auto;
font-size: 1.2rem;
box-shadow: 0 4px 10px rgba(112, 81, 81, 0.2);

}
.capital { 

    margin-bottom: 0;
box-shadow: 0 4px 10px rgba(112, 81, 81, 0.2);

}


