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

body{
  background: #f2f2f2;
  font-family: sans-serif;
}

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

.searchTerm {
  float: left;
  width: 200%;
  border: 5px solid #f05f40!important;
  padding: 5px;
  height: 60px;
  border-radius: 5px;
  outline: none;
  color: black;
  font-size: 25px;
}

.searchTerm:focus{
  color: black;
}

.searchButton {
  position: absolute;  
  right: -600px;
  width: 120px;
  height: 59px;
  border: 1px solid #00B4CC;
  background: #f05f40!important;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 30px;
}

/*Resize the wrap to see the search bar change!*/
.wrap{
  width: 50%;
  position: absolute;
  top: 130%;
  left: 23%;
  transform: translate(-50%, -50%);
}
