*{
    margin:0;
    padding: 0;
    /*box-sizing: border-box;*/
}

body{
    font-family: 'montserrat', sans-serif;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: top center;

} 
.heading{
    margin:4% 4% 4%;
    padding: 0px 0px 15px 15px;
    text-align: center;
    font-size: 50px;
    background-image:linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));

}
.heado{
    background:linear-gradient(to right,red,orange, yellow,green,cyan,blue,violet);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
}
.app-wrap{
    margin-left: 15%;
    margin-right: 15%;
    margin-bottom:0;
    /*display:flexbox;*/
    /*flex-direction: column;*/
    /*min-height: 65vh;*/
    background-image: linear-gradient(to bottom,rgba(0,0,0,0.3),rgba(0,0,0,0.6));

}

header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 15px 15px;
}

header input{
    width: 100%;
    max-width: 80%;
    height: 50px;
    /*pad: 100px 15px;*/
    border: none;
    outline: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px 10px 10px 10px;
    text-align: center;
    color: #161616;
    font-size: 30px;
    font-weight: 300;
    transition: 0.2s ease-out;
}

header input:focus{
    background-color: rgba(255, 255,255,0.6);

}

main{
    /*flex: 1 1 100%;*/
    padding: 25px 25px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
}

.location .city{
    color: white;
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 10px;
}

.location .date{
   color: white;
    font-size: 20px;
}

.current .temp{
    color: white;
    font-size: 102px;
    font-weight: 900;
    margin: 30px 0px;
    text-shadow: 2px 10px rgba(0,0,0,0.6);
}

.current .temp span {
    color: white;
    font-weight: 500;
}

.current .weather {
    color: white;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 20px;
    text-shadow: 0px 3px rgba(0 , 0, 0, 0.4);
}

.current .hi-low{
    color: white;
    font-size: 24px;
    font-weight: 500;
    text-shadow: 0px 4px rgba(0,0, 0, 0.4);
}

footer{
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    text-align: center;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.byline h1{
    color: white;
    font-size: 30px;
    font-weight: 700;

}

.byline h2{
    color: white;
    font-size: 26px;

}

.byline p{
    color: white;
    font-size: 20px;
}

.profile{
    display: flex;
    justify-content: center;
    align-items: center;
}