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

body {
    font-family: 'Times New Roman', Times, serif;
    background-image: url(/images/firewatch-wallpaper-59145-60929-hd-wallpapers.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;
}

header input {
    width: 100%;
    max-width: 280px;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 15px 20px;
    border: none;
    outline: none;
    border-bottom: 5px solid rgb(207, 160, 155);
    border-radius: 16px 0 16px 0;
    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: 32px;
    font-weight: 500;
    margin-bottom: 5px;
}

.location .date {
    color: white;
    font-size: 16px;
}

.current .weather-icon {
    margin: 30px 0;
    height: 100px;
    width: 100px;
}

.current .weather-indication {
    color: white;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px;
}

.current .today-temp {
    color: white;
    font-size: 50px;
    font-weight: 700;
}

.current .temp-feel {
    color: white;
    font-size: 16px;
    font-weight: 500;
}
