/* The content */
.search-page-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}
/* Close button */
.search .closebtn {
  display: flex;
  justify-content: flex-end;
  margin:2%;
  cursor: pointer;
}
.search .closebtn:hover {
  color:#C097A0; 
}
/* Style the search field */
.search input[type=text] {
  padding: 15px;
  font-family: 'Gaegu';
  font-size: 2rem;
  border: none;
  float: left;
  width: 80%;
}

/* Style the submit button */
.search button {
  float: left;
  width: 20%;
  padding: 15px;
  background: none;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.search button:hover {
  background: none;
  color: #C097A0;
}
body{ 
    background-image: url("../images/search-background.jpg");  /* ../ is to out of one directory into another *add dash for absolute path, start at root directory*/
    background-repeat: no-repeat;
    background-color:#0b0702;
    background-position: center;
    background-attachment: fixed;
    background-size: cover; 
    margin: 0px;
}