.header {
  width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.jobs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.jobs_inner {
  width: 960px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.jobs_row {
  display: flex;
  flex-direction: row;
  margin-bottom: 100px;
  gap: 20px;
}

.job_item {
  width: 280px;
  margin: 10px;
  height: 200px;
  /* border: 1px solid; */
  background-color: grey;
}

.job_item img {
  height: 100%;
  width: 100%;
  /* border-radius: 1%; */
}

.project-title {
  text-align: left;
  font-weight: bold;
  padding-left: 5px;
  border-left: 1px solid rgb(143, 143, 143);
  /* text-decoration: underline; */
  margin-top: 10px;
  position: relative;
}

.project-title::after {
  content: "";
  width: 6px;
  transform: translate(-2px, -3px) rotate(15deg);
  height: 100%;

  position: absolute;
  /* border-radius: 0 15px 15px 0; */
  left: -3px;
  transition: all 0.3s;
}

.job_item:hover .project-title::after {
  width: 80px;
  height: 2px;
  transform: translate(0px, 0px) rotate(0deg);
  /* border-radius: 0 15px 15px 0; */
  left: 0px;
  bottom: 0;
}

.css-round .project-title::after {
  background-color: rgba(98, 96, 219, 0.466);
}
.js-round .project-title::after {
  background-color: rgba(211, 219, 96, 0.452);
}
.canvas-round .project-title::after {
  background-color: rgba(219, 176, 96, 0.445);
}

.css-round,
.js-round,
.canvas-round,
.fm-round {
  position: relative;
}
.css-round::after {
  position: absolute;
  display: block;
  text-align: center;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  padding: 3px;
  content: "CSS";
  background-color: rgb(71, 71, 223);
  bottom: -6px;
  right: -5px;
}
.js-round::after {
  position: absolute;
  display: block;
  text-align: center;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  padding: 3px;
  content: "JS";
  background-color: rgb(224, 222, 61);
  bottom: -6px;
  right: -10px;
}
.canvas-round::after {
  position: absolute;
  display: block;
  text-align: center;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  padding: 3px;
  content: "canvas";
  background-color: rgb(223, 139, 71);
  bottom: -6px;
  right: -20px;
}

.fm-round::after {
  position: absolute;
  display: block;
  text-align: center;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  padding: 3px;
  content: "frontendmentor.io";
  background-color: rgb(71, 213, 223);
  bottom: -6px;
  right: -20px;
  height: 15px;
}

.btns {
  display: flex;
  /* align-items: center; */
  justify-content: starts;
  gap: 10px;
  margin: 10px 0;
  padding-left: 4px;
  border-left: 1px solid rgb(85, 149, 201);
}

.btns a {
  background-color: rgb(85, 149, 201);
  border: none;
  border-radius: 30px;
  padding: 5px;
}

.btns a:hover {
  cursor: pointer;
  background-color: rgb(50, 153, 238);
}

.btns a:link,
.btns a:visited,
.btns a:active,
.btns a {
  text-transform: none;
  color: white;
}
