body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace
}

body {
    font-family: "Open Sans", serif
}

.App {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap
}

.main {
    background: #fff;
    box-shadow: 0 13px 40px -13px rgba(0, 0, 0, .75);
    margin: 0 auto
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #0f6d0f;
    text-shadow: 2px 2px #a0ccf0
}

.title-container__title {
    font-size: 50px;
    letter-spacing: 2px;
    line-height: 1.3;
    font-family: "Roboto Slab", serif
}

.title-container__subtitle {
    font-style: italic;
    font-weight: 100;
    letter-spacing: 1px;
    line-height: 1.5;
    font-family: "Merriweather", serif
}

.form-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 50px
}

.row {
    background-image: url(/projects/weatherapp/static/media/sunny-day.6f4863ae.jpg) !important;
    background-size: cover
}

input[type=text] {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #0f6d0f;
    width: 75px;
    padding-bottom: 4px;
    color: #0f6d0f !important;
    letter-spacing: 2px;
    margin-bottom: 30px;
    margin-right: 20px;
    font-size: 16px;
    outline: none
}

.form-inline {
    margin-top: 100%;
    width: 100%;
    display: flex;
    flex-flow: row;
    flex-wrap: wrap
}

button {
    display: block !important;
    border: 0;
    padding: 8px 20px;
    margin: 0 20px;
    border-radius: 2px;
    font-weight: lighter;
    letter-spacing: 1px;
    font-size: 15px;
    cursor: pointer;
    background-color: #0f6d0f;
    color: #fff;
    font-weight: 200
}

button:active {
    outline: none
}

.weather__info {
    width: 100%;
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 2px
}

.weather__key {
    color: #0f6d0f;
    text-shadow: 2px 2px #a0ccf0;
    border-bottom: 2px solid hsla(0, 0%, 100%, .06);
    padding: 20px 0;
    font-weight: 400
}

.weather__key:last-child {
    border: 0
}

.weather__value {
    color: #fff;
    text-shadow: 2px 2px #f16051;
    font-weight: 200
}

.weather__error {
    color: #f16051;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 200
}

@media(min-width:768px) {
    .main {
        width: 75vw
    }

    .row {
        height: 1000px
    }
}

@media(max-width:768px) {
    .row {
        height: 1100px
    }
}

/*# sourceMappingURL=main.efcc09e3.chunk.css.map */