* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hammersmith One', sans-serif;
    background-color: black;
    background-image: url('camp.jpg');
    background-size: cover;
    background-position: top center;
    overflow-y: hidden;
}

.app-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 15px 15px;
}

header input {
    width: 100%;
    max-width: 800px;
    padding: 10px 10px;
    border: none;
    outline: none;
    border-radius: 12px;
    background-color: rgba(54, 80, 85, 0.4);

    text-align: center;
    color: #e0e0e0;
    font-weight: 300;
    font-size: 16px;
    transition: 0.4s ease-out;
}

header input:focus {
    background-color: rgba(54, 80, 85, 0.8);
}

main {
    flex: 1 1 100%;
    padding: 5px 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.location .city {
    color: #e0e0e0;
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.location .date {
    color: #e0e0e0;
    font-size: 18px;
}

.current .temp {
    color: #e0e0e0;
    font-size: 54px;
    margin: 30px 0px;
    text-shadow: 2px 10px rgba(0, 0, 0, 0.6);
}

.current .weather {
    color: #e0e0e0;
    font-size: 22px;
    font-style: italic;
    margin-bottom: 15px;
    text-shadow: 0px 4px rgba(0, 0, 0, 0.4);
}

.current .hi-low {
    color: #e0e0e0;
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: 500;
    text-shadow: 0px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
}

.forecast {
    display: flex;
    flex-direction: row;
}

.forecast .card {
    background-color: rgba(54, 80, 85, 0.5);
    margin: 1.5vw;
    width: 100px;
    height: 130px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 10px;
}

.dateForecast {
    color: #e0e0e0;
    margin-top: 15px;
    font-size: 18px;
}

.wf1, .wf2, .wf3, .wf4, .wf5 {
    color: #e0e0e0;
    margin-top: 20px;
    font-size: 15px;
}

.hl1, .hl2, .hl3, .hl4, .hl5 {
    color: #e0e0e0;
    margin-top: 20px;
    font-size: 14px;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 10px;
    width: 100%;
}

.camping {
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background-color: rgba(54, 80, 85, 0.4);
    width: 100%;
    max-width: 800px;
    padding: 10px 10px;
}

/* RESPONSIVE CSS */
@media only screen and (max-width: 640px) {

    .app-wrap {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    
    header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 15px 15px;
    }
    
    header input {
        width: 100%;
        max-width: 800px;
        padding: 10px 10px;
        border: none;
        outline: none;
        border-radius: 12px;
        background-color: rgba(54, 80, 85, 0.4);
    
        text-align: center;
        color: #e0e0e0;
        font-weight: 300;
        font-size: 16px;
        transition: 0.4s ease-out;
    }
    
    header input:focus {
        background-color: rgba(54, 80, 85, 0.8);
    }
    
    main {
        flex: 1 1 100%;
        padding: 5px 15px 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .location .city {
        color: #e0e0e0;
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 5px;
        letter-spacing: 1px;
    }
    
    .location .date {
        color: #e0e0e0;
        font-size: 18px;
    }
    
    .current .temp {
        color: #e0e0e0;
        font-size: 50px;
        margin: 25px 0px;
        text-shadow: 2px 10px rgba(0, 0, 0, 0.6);
    }
    
    .current .weather {
        color: #e0e0e0;
        font-size: 26px;
        font-style: italic;
        margin-bottom: 10px;
        text-shadow: 0px 4px rgba(0, 0, 0, 0.4);
    }
    
    .current .hi-low {
        color: #e0e0e0;
        letter-spacing: 1px;
        font-size: 20px;
        font-weight: 500;
        text-shadow: 0px 4px rgba(0, 0, 0, 0.4);
        margin-bottom: 30px;
        margin-top: 25px;
    }
    
    .forecast {
        display: flex;
        flex-direction: row;
        margin-top: 20px;
    }
    
    .forecast .card {
        background-color: rgba(54, 80, 85, 0.8);
        margin: 3px;
        width: 65px;
        height: 160px;
        border-radius: 12px;
        text-align: center;
        margin-bottom: 0px;
    }
    
    .dateForecast {
        color: #e0e0e0;
        margin-top: 20px;
        font-size: 18px;
    }
    
    .wf1, .wf2, .wf3, .wf4, .wf5 {
        color: #e0e0e0;
        margin-top: 25px;
        font-size: 15px;
    }
    
    .hl1, .hl2, .hl3, .hl4, .hl5 {
        color: #e0e0e0;
        margin-top: 25px;
        font-size: 14px;
    }
    
    .footer {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
        width: 90vw;
    }
    
    .camping {
        color: #e0e0e0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 12px;
        background-color: rgba(54, 80, 85, 0.4);
        width: 100%;
        max-width: 800px;
        padding: 10px 10px;
    }

}