.container_project{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 100px;
}

.project__slot {
  display: flex;
  flex-direction: column;
  max-width: 230px;
  align-items: center;
  text-align: justify;
  color: var(--font-color);
}

.project__card {
  width: 200px;
  height: 300px;
  border: solid 1px var(--font-color);
  border-radius: 10%;
  transition: all 0.5s ease-in-out;
  opacity: 0.5;
}

.project__card:hover {
 opacity: 1;
}

@media only screen and (max-width: 688px) {
  .container_project{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.project__slot {
  display: flex;
  flex-direction: column;
  max-width: 230px;
  align-items: center;
  text-align: justify;
}

.project__card {
  width: 200px;
  height: 300px;
  border: solid 1px var(--font-color);
  border-radius: 10%;
  transition: all 0.5s ease-in-out;
  opacity: 0.5;
}

.project__card:hover {
 opacity: 1;
}
}
