.box-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.project-boxes {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.project-box {
  width: 100%;
  height: 240px;
  display: flex;
}

.project-box-left {
  width: 30%;
  height: 100%;
}

.project-box-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: auto;
}

.project-box-right {
  width: 70%;
  height: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: var(--color-secondary);
}

.project-box-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-header h2 {
  letter-spacing: 1.2px;
}

.content-header>p {
  background-color: var(--color-inverse);
  color: var(--font-inverse);
  padding: 4px 14px;
  opacity: 0.9;
}

.project-box-content>p {
  opacity: 0.8;
}

.project-box-techs {
  display: flex;
  gap: 20px;
}

.project-box-techs>p {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--font-color);
}

a:link,
a:visited {
  text-decoration: none;
  color: var(--font-color);
}

.pagination button {
  padding: 6px 12px;
  margin: 0 4px 12px 4px;
  cursor: pointer;
  background-color: transparent;
  color: var(--font-color);
  border: 0;
  border-radius: 8px;
}

.pagination button:hover {
  color: var(--font-pagination);
}

.pagination button.active {
  font-weight: bold;
  color: var(--font-pagination);
  cursor: default;
  border-bottom: 2px solid var(--font-color);
}

@media only screen and (min-width: 2200px) {
  .project-boxes {
    width: 85%;
  }
}

@media only screen and (max-width: 650px) {
  .project-box-left {
    width: 40%;
  }

  .project-box-right {
    width: 60%;
  }
}

@media only screen and (max-width: 460px) {
  .project-box-left {
    width: 0%;
  }

  .project-box-right {
    width: 100%;
  }
}

