*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'montserrat', sans-serif;
    background-image: url(../sky-clouds-background.jpg);
    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    
}
.app-wrap{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* height: 100vh; */
    background-image: linear-gradient(to bottom, rgba(0,0,0,.3),rgba(0,0,0,.6));
}
header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding:15px;
    width: 50%;
}
header input{
    width: 100%;
    max-width: 280px;
    padding: 10px 15px;
    border: none;
    outline: none;
    background-color: rgba(255,255,255,.2);
    border-radius: 16px 0 16px 0;
    border-bottom: 3px solid #df8e00;
    color: #333;
    font-size: 20px;
    font-weight: 300;
    transition: 0.2s ease-out;
}
header input:focus{
    background-color: rgba(255,255,255,.8);
    border-radius: 0px 16px 0px 16px;
}
main{
    margin-top: 20vh;
    margin-bottom: 18.5vh;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 50%;
}
.location .city{
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 5px;
}
.location .date{
    color: #fff;
    font-size: 16px;
}
.main-temp .temp{
     color: #fff;
     font-size: 100px;
     font-weight: 900;
     margin: 30px 0;
     text-shadow: 2px 10px rgba(0,0,0,.6) ;
    
}
.main-temp .span{
    font-weight: 500;
}
.main-temp .weather{
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 15px;
    text-shadow: 0 3px rgba(0,0,0,.6);
}
.main-temp .hi-low{
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-shadow:  0 3px rgba(0,0,0,.6);
}
@media (max-width:900px) {
    header{
        width: 100vh;
    }
    .main{
        width: 100vh;
        margin: 0!important;
    }
}