@import url(https://fonts.googleapis.com/css?family=Open+Sans);

.search {
    width: 100%;
    position: relative;
    display: flex;
}

.searchTerm {
    width: 100%;
    border: 3px solid darkred;
    border-right: none;
    padding: 5px;
    height: 2.23rem;
    border-radius: 5px 0 0 5px;
    outline: none;
    color: #9DBFAF;
}

.searchTerm:focus{
    color: black;
}

.searchButton {
    width: 40px;
    height: 36px;
    border: 1px solid darkred;
    background: darkred;
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
}

/*Resize the wrap to see the search bar change!*/
.wrap{
    margin-top: -3rem;
    margin-left: 1rem;
    width: 75%;
}

@media screen and (max-width: 960px) {

}

@media screen and (min-width: 960px) {
    .wrap{
        width: 35%;
    }
}