body {
    font-family: "Open Sans", sans-serif;
    background-color: #F9F6F0;
}

h6 {
    margin-top: 0;
}

.app__container {
    margin: 3% 5%;
}

.app__header {
    display: flex;
    justify-content: space-between;
    color: #5D4E37;
}

.app__header__title {
    letter-spacing: 0.23rem;
}

.app__header__title--grey {
    color: #8B7355;
}

.app__menu__img {
    height: 50px;
    width: auto;
}

.app__content {
    display: flex;
    margin-top: 20px;
}

.wind__speed__container {
    display: flex;
    flex-direction: column;
    background-color: #F5F1E8;
    border-radius: 0.55rem;
    box-shadow: 0 1px 3px rgba(139,115,85,0.12), 0 1px 2px rgba(139,115,85,0.24);
}

.graph__title {
    color: #5D4E37 !important;
    letter-spacing: 0.3rem !important;
    padding: 25px 25px 0px 25px;
    margin-bottom: 0px !important;
    font-size: 1em;
}

.slider {
    padding: 15px;
}

.auto__checkbox {
    margin-right: 10px;
}

.auto__label {
    color: #8B7355;
}

.auto__container {
    display: flex;
    justify-content: space-between;
    color: #8B7355;
    padding: 0px 15px;
}

.auto__p {
    margin-bottom: 0;
}

.graph__container {
    background-color: #F5F1E8;
    border-radius: 0.55rem;
    box-shadow: 0 1px 3px rgba(139,115,85,0.12), 0 1px 2px rgba(139,115,85,0.24);
}

.first {
    margin-bottom: 15px;
}

.second {
    margin-top: 15px;
}

.histogram__direction {
    margin-left: 15px;
}

#revenue-graph {
    display: flex;
    justify-content: center;
}

.dropdown-container {
    padding: 10px 25px;
    color: #5D4E37;
}

.date-input-container {
    padding: 5px 25px;
    color: #5D4E37;
}

#unit-dropdown {
    width: 100%;
    margin-top: 5px;
}

#start-date, #end-date {
    width: 100%;
    margin-top: 5px;
    padding: 5px;
    background-color: #F5F1E8;
    border: 1px solid #8B7355;
    color: #5D4E37;
    border-radius: 4px;
}

@media only screen and (max-width: 600px) {
    .histogram__direction {
        margin: 15px 0px 20px 0px;
    }
    .app__content {
        display: block;
    }
    .app__menu__img {
        height: 30px;
        width: auto;
    }
    .app__header {
        display: flex;
        flex-direction: column;
    }
    .app__header__desc {
        order: 1;
        text-align: center;
    }
    .app__header__logo {
        order: 0;
    }
    .app__header__title {
        font-size: 1.5em;
        padding-top: 15px;
    }
}