div.searchbar {
  margin: auto;
  text-align: center;
}

div.searchbar > form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

div.searchbar > form > input[type=search] {
  flex-grow: 1;
  padding: 6px;
  border: 2px solid #000000;
  font-size: 18px;
}

div.searchbar > form > input[type=search]:focus {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

div.searchbar > form > button[type=submit] {
  padding: 6px 12px;
  margin-left: 5px;
  border: 2px solid #218c31;
  border-radius: 6px;
  background-color: #218c31;
  color: #ffffff;
  font-size: 18px;
}

div.searchbar > form > button[type=submit]:hover, div.searchbar > form > button[type=submit]:focus {
  background-color: #2bb13f;
  cursor: pointer;
}

div.project-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

div.project-list > .empty {
  text-align: center;
  margin-top: 15%;
}

div.project-list a {
  text-decoration: none;
  color: inherit;
}

div.project {
  display: flex;
  flex-direction: column;
  padding: 35px 50px;
  margin: auto;
  margin-bottom: 25px;
  border: 0 4px 8px 0 solid #000000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: 0.5s;
}

div.project:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

div.project .project-title {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  margin-top: 0;
  font-size: 26px;
}

div.project > p.project-description {
  font-size: 18px;
  margin-top: -5px;
}

div.project ul {
  padding-left: 0;
  margin: 0;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
}

div.project ul.ls {
  gap: 10px 50px;
}

div.project ul.tags {
  margin-top: 17px;
  gap: 5px 10px;
}

div.project li {
  font-size: 14px;
  list-style: none;
}

div.project ul.tags li {
  padding: 6px 8px;
  background-color: rgb(75, 145, 236);
  color: #ffffff;
  font-size: 12px;
  border-radius: 17px;
}

@media (min-width: 769px) {
  div.container {
    max-width: 64%;
  }
}

@media (max-width: 768px) {
  div.container {
    width: 85%;
  }

  div.searchbar input[type=search] {
    width: 73%;
  }

  div.project {
    padding: 30px 35px;
  }

  div.project ul {
    width: 100%;
  }

  div.project ul.ls li {
    font-size: 14px;
  }

}
