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

header input{
width: 100%;
max-width: 280px;
padding: 10px 15px;
border: none;
outline: none;
background-color: rgba(255,255,255,0.3);
color: #313131;
border-radius: 16px 0px 16px 0px;
border-bottom: 3px solid darkseagreen;
font-size: 20px;
font-weight:300 ;
transition: 0.2s ease-out;
}

/* Placeholder for weather values */
::placeholder{
    color: white;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif ;

}

/* Main */
body{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-image: url(images/background.png);
    
}

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

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-position: top center;
}

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

/* Current Values */
.location .city{
    color: white;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 5px;
}


.current .temp{
    color: white;
    font-size: 102px;
    font-weight: 900;
    margin-bottom: 30px 0px;
    text-shadow: 2px 5px rgba(0,0,0,0.5) ;
}

.current .temp span{
    font-weight: 500;
}

.current .weather{
    color: white;
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 15px;
    text-shadow: 1px 2px rgba(0,0,0,0.4) ; 
}

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

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




