#contentwrapper {
  width: 100%;
  padding-bottom: 50px;
}

.dripdivider {
  position: static;
  background-image: url("../media/wavetoppink.svg");
}

/*
search
*/

#searchbar, #portfolio, #contentwrapper .bottom {
  width: calc(100% - 00px);
  padding: 0 00px;
}

#searchbar {
  margin-top: 10px;
  padding-bottom: 20px;
  text-align: center;
  padding-top: 110px;
  background-color: var(--main-bg-colour);
}

#searchbar .categorytitle {
  display: inline-block;
  margin-right: 10px;
  font-size: 25px;
  font-weight: 600;
  color: var(--main-text-colour);
  padding: 3px;
  transition: border-color 0.2s ease;
  border: solid 2px var(--main-bg-colour);
  border-radius: 5px;
  text-decoration: none;
}

#searchbar .categorytitle.selected {
  border-color: #EA3156;
}

#searchbar .categorytitle:hover {
  cursor: pointer;
}

/*
portfolio
*/

#portfolio {
  text-align: center;
  margin: auto;
  background-color: var(--main-bg-colour);
}

#portfolio .project {
  display: inline-block;
  width: 300px;
  margin: 10px;
  transition: width 0.5s ease, margin 0.5s ease, opacity 0.5s ease;
  opacity: 1;
}

#portfolio .project {
  height: 400px;
}

#portfolio .project.hidden {
  width: 0;
  margin: 0;
  opacity: 0;
}

#portfolio .project a {
  text-decoration: none;
  display: block;
  border-radius: 10px;
  background-color: #EA3156;
  overflow: hidden;
  height: 352px;
}

#portfolio .project p {
  color: white;
  text-align: center;
  font-weight: 500;
  font-size: 1.1em;
  margin: 0;
  padding: 16px 0;
}

#portfolio .project .thumbnail {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  transition: height 0.3s ease;
}

#portfolio .project:hover .thumbnail, #portfolio .project a:focus .thumbnail {
  height: 352px;
}

#contentwrapper .bottom {
  height: 100px;
  background-color: var(--main-bg-colour);
}

#footer .content {
  padding-bottom: 50px;
}