#projects {
  margin: 0 auto;
  width: 100%;
  padding: 80px 0;
  background-color: rgb(35, 36, 45);
}

.title-big {
  font-size: 45px;
  border-bottom: 1px solid yellow;
  margin: 0px auto;
  margin-bottom: 40px;
  width: 50%;
}
.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.video-card {
  width: 30%;
  min-height: 420px; /* statt height: 420px */
  background-color: #2f303c;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
.video-container {
  width: 100%;
}
.video-container video {
  width: 100%;
  display: block;
  pointer-events: none;
}
.video-placeholder {
  width: 100%;
  height: 170px;
  background-color: #1e1f27;
  border-radius: 4px;
}

.language img {
  width: 20px;
  margin-top: 2px;
}
.language {
  color: pink;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  border-right: 1px solid #40414b;

  padding-right: 5px;
}
.technologies {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.old-projects-toggle {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
#show-old-projects-btn {
  background-color: #393a48;
  color: #d8d8d8;
  border: 1px solid #4e4f5e;
  padding: 10px 24px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 9px;
  transition: background-color 0.2s;
}
#show-old-projects-btn:hover {
  background-color: #44455a;
}
#old-projects {
  margin-top: 40px;
}
.link-btn {
  background-color: #393a48;
  margin-top: 5px;
  width: auto;
  display: inline-flex;
  align-items: center;
}
.card-actions {
  display: flex;
  flex-direction: row;
  gap: 6px;
  margin-top: 8px;
}
.code-unavailable {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: #5a5b6e;
}
.link-btn:hover {
  background-color: #3e3f4e;
}
.link-btn:active {
  background-color: #494a5b;
}
.green {
  background-color: rgb(70, 98, 70);
}
.green:hover {
  background-color: rgb(77, 108, 77);
}
.green:active {
  background-color: rgb(95, 121, 95);
}
