* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    margin: 0 auto;
    background: lightcyan;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-top: 200px;
    min-width: 400px;
}

.app {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 90%;
    background-color: rgb(161, 210, 240);
    padding: 50px;
    border-radius: 5%;
}

input {
    margin-bottom: 50px;
    padding: 1rem;
    border-radius: 25px;
    border: none;
    background-color: #fff;
    font-family: inherit;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    font-size: 1.2rem;

}

input:focus {
    outline: none;
}

.weather {
    text-align: center;
}
.weather .box {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 1rem;
}
.weather .box .h2 {
    
    font-size: 1rem;
}
.weather img {
    transform: scale(1);
}

.weather small {
    color: white;
    background: black;
    padding: 10px;
    border-radius: 15px;
    font-size: 1rem;
}

@media (min-width: 500px) {
    .app {
        width: 60%;
    }
}

@media (min-width: 900px) {
    .app {
        width: 40%;
    }
}