#projects {
  position: relative;
  background-color: transparent;
}

.projects {
  color: #121212;
}

.project-list {
  position: relative;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 1200px) {
  .project-list {
    flex-direction: column;
  }
}

.project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f5f5f5;
  border-radius: 5px;
  border: 1px solid rgb(15.3023255814, 43.7209302326, 78.6976744186);
  background-color: rgb(15.3023255814, 43.7209302326, 78.6976744186);
  padding: 0;
  margin: 1rem 0;
  min-width: 48%;
  max-width: 48%;
  height: auto;
  box-shadow: 1px 1px 15px #071424;
}
@media (max-width: 1200px) {
  .project-card {
    min-width: 100%;
  }
}

.project-header {
  position: relative;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #f5f5f5;
  margin: 0;
  padding: 1rem 0.5rem;
  border-radius: 5px;
  border: 2px solid rgb(15.3023255814, 43.7209302326, 78.6976744186);
  background: rgba(255, 255, 255, 0.141);
  mix-blend-mode: normal;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.project-summary {
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 1rem;
  margin: 0;
}

.project-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  border-top: 1px solid #f5f5f5;
  margin-bottom: 1rem;
}

.project-demo,
.project-repo,
.project-blog {
  position: relative;
  display: inline-block;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-weight: 200;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid white;
  border-radius: 25px;
  padding: 0.25rem 0.7rem;
  margin: 0 0.2rem;
  cursor: pointer;
  background-position: -1px;
  background-size: contain;
  padding-left: 2.4rem;
  margin: 1.25rem 0.25rem 0.25rem 0.25rem;
  background-repeat: no-repeat;
  background-color: #0d1b2a;
  color: #fff;
}

.inactive {
  cursor: not-allowed;
  filter: brightness(0.5);
}

.project-repo {
  background-image: url("../img/int/github_cat.svg");
}

.project-demo {
  background-image: url("../img/int/play.svg");
}

.project-blog {
  background-image: url("../img/int/plus.svg");
}/*# sourceMappingURL=projects.css.map */