*{
    margin: 0;padding: 0;
    box-sizing: border-box;
}
body{
    max-height: 100vh;
    min-height: 100vh;
    overflow: hidden;
}
nav{
    font-size: 1.5rem;
    padding: 0 30px;
    height: 50px;
    font-family: 'Poppins',sans-serif;
    align-items: center;
    display: flex;
    border-bottom: solid;
}
.logo{
    cursor: pointer;
}
p{
    font-family: 'Roboto',sans-serif;
    font-size: 10px;
}
h3{
    font-family: 'Roboto',sans-serif;
}
hr{
    margin: 10px 0;
    color: black;
}
.container{
    text-align: center;
    display: flex;
    flex-direction: column;
}
.weather,.temperature{
    border: solid;
    height: 300px;
    width: 40%;
    margin: 30px 0;
    font-family: 'Roboto',sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
.wrapper{
    display: flex;
    justify-content: space-around;
}

input{
    height: 50px;
    width: 300px;
    margin: auto;
    padding: 15px;
    font-family: 'Roboto',sans-serif;
    font-size: 1.2rem;
}
input:focus{
    outline: none;
}
button{
    margin: 20px auto;
    padding: 20px;
    font-family: 'Roboto',sans-serif;
}
@media(max-width: 500px){
    nav{
        padding: 0 10px;
    }
    input{
        width: 200px;
        height: 30px;
    }
    button{
        height: 30px;
        padding: 10px;
        display: flex;
        align-items: center;
    }
    .temperature,.weather{
        height: 200px;
    }
}