*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    /*background: rgb(8, 5, 39);
    /* min-height: 100%; */
    /*color: rgb(8, 25, 49);*/

    font-family: 'Montserrat', sans-serif;
    background-image: url("../images/bg.jpg");
    background-size: cover;
    background-position: top center;
}

.app-wrap{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 15px 15px 15px;
}

header input{
    width: 100%;
    max-width: 280px;
    padding: 10px 15px;
    border: none;
    outline: none;
    background-color: rgba(250,250,250,0.6);
    border-radius: 16px 2px 16px 2px;
    border-bottom: 3px solid #df8e00;
    
    color: #313131;
    font-size: 20px;
    font-weight: 300;
    transition: 500ms background-color;
}

header input:focus{
    background-color: rgba(255,255,255,0.8);
}

main{
    padding: 25px 25px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.location .city{
    color: #FFF;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 5px;
}

.location .date{
    color: #FFF;
    font-size: 16px;
}

.current .temp{
    color: #FFF;
    font-size: 102px;
    font-weight: 900;
    margin: 30px 0px;
    text-shadow: 2px 10px 0px rgba(0,0,0,0.8)
}

.current .temp span{
    font-weight: 500;
}
.current .weather{
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0px 3px rgba(0,0,0,0.4)
}

.current .hi-low{
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    text-shadow: 0px 4px rgba(0,0,0,0.4)
}