*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    color: white;
    font-family: 'montserrat', sans-serif;
    background-image: url('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.6));
}

header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 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: 15px 0px 15px 0px;
    border-bottom: 2px solid #fff;

    color:  #fff;
    font-size: 20px;
    font-weight: 300;
    transition: 0.3s ease-out;
}

header input:focus{
    background-color:  rgba(255, 255,255, 0.1);
}

header input::placeholder{
    color: white;
}

main{
    flex:1 1 100%;
    padding: 25px 25px 50px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.location .city{
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 5px;
}

.location .data{
    font-size: 16px;
}

.current .temp{
    font-size: 102px;
    font-weight: 900;
    margin: 30px 0px;
    text-shadow: 3px 10px rgba(0,0,0,0.6);
}

.current .temp span{
    font-weight: 500px;
}

.current .weather{
    font-size: 32px;
    font-weight: 700;
    font-style: italic;
    margin-bottom:15px;
    text-shadow: 0px 3px rgba(0,0,0,0.4);
}

.current .hi-low{
    font-size: 24px;
    font-weight: 500;
    text-shadow: 0px 4px rgba(0,0,0,0.4);
}

footer{
    font-size: 20px;
    padding-top: 15px;
}

a{
    padding: 2px;
    margin: 2px;
    color: white;
    text-decoration: none;
}
a:hover{

    color: rgba(255, 255,255, 0.1);
    text-decoration: none;
}

.notfound{
    display: none;
    color: red;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    margin-top: 2px;
}
