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

body{
    font-family:sans-serif;
    background-image: url(img/firewatch-game-priroda.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.6));
}

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);
    border-radius: 16px 0px 16px 0;
    border-bottom: 3px solid #df8e00;

    color:  #313131;
    font-size: 20px;
    font-weight: 300;
    transition: 0.2s ease-out;
}

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

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

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

.location .date{
    color: white;
    font-size: 16px;
}
.current .temp{
   font-size: 32px;
    color: white;
    font-weight: 500;
    margin-bottom: 5px;
    
}
.current .temp sup{
  font-weight: 500;
  color: #e5007e ;
  font-size: 16px;
}

.current .weather{
      color: white;
    font-size: 16px;
	margin-bottom: 10px;
    
}

.current .hi-low{

       color: white;
    font-size: 16px;
    
}
