html {
    height: 100%;
    width: 100%;
    overflow: auto;
}

body {
    display: flex;
    flex-flow: column wrap;
}

.form-container {
    background: #1b6b64;
    border: #487779 2px solid;
    box-sizing: border-box;
    padding: 10px;
}

.search-box-text {
    color: #ffffff;
    font-family: Helvetica, sans-serif;
}

.search-box-p {
    font-size: 19px;
    line-height: 1.25;
    margin: 0;
}

.search-box-container {
    height: 100%;
    line-height: 18px !important;
    margin-bottom: 0;
    overflow: hidden;
    padding: 5px;   
    text-align: left;
    width: 100%;
}

#searchForm {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: flex-start;
    margin: 0;
}

#q {
    height: 25px;
    margin-right: 5px;
    width: 75%;
}

#searchButton {
    border: 3px solid #a6a6a6;
    border-radius: 6px;
    border-width: 3px;
    font-size: 20px;
    font-weight: bold;
    height: 40px;
    margin-left: 5px;
    width: 100px;
}

.search-box-small-p {
    font-size: 12px;
    line-height: 1.25;
    margin: 0;
}

/* BREAKPOINTS */


/* TABLETS */

@media only screen and (min-width: 768px) {

    .form-container {
        padding: 25px 40px 25px 40px;
    }

}