@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');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 320px;
}

.top input{
    border-radius: 5px;
    border: none;
    background-color: rgb(220, 223, 222);
    height: 50px;
    width: 480px;
    font-size: 16px;
}

#city-input{
    padding: 20px;
}

.top button{
    background-color: rgb(252, 48, 48);
    border: none;
    height: 50px;
    width: 80px;
    border-radius: 5px;
    font-size: 16px;
}

.top button:hover{
    background-color: green;
}

.name{
    display: flex;
    font-size: 32px;
    column-gap: 18px;
}

h6{
    font-size: 28px;
}

p{
    font-size: 24px;
}