*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    font-family: 'montserrat',sans-serif;
    color:#fff !important; 
    background-image: url("img/weather.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size:cover;
    height: 100vh;
    
}

.app{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background:rgba(0,0,0,0.8);
    height: 100vh;
    
}

.header{
    padding:50px 20px 40px 20px;
}

.header h1{
    font-size: 50px;
    padding-bottom: 20px;
    color:#F8B500;
    text-shadow:1px 3px rgba(0,0,0,0.5);
}

.header input{
    width:400px;
    padding: 10px;
    background-color: transparent;
    border:0;
    outline: 0;
    border-bottom: 2px solid #F8B500;
    text-align: center;
    font-size:20px;
    color:#fff;
}

.city{
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 1px 3px rgba(0,0,0,0.5);
}

.temp{
    font-size: 70px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 1px 3px rgba(0,0,0,0.5);
}

.desc{
    font-size: 25px;
    font-style:italic;
    text-shadow: 1px 3px rgba(0,0,0,0.5);
    margin-bottom:10px;
}

.minmax , .humid{
    font-size:24px;
    text-shadow: 1px 3px rgba(0,0,0,0.5);
}