.logo-page-art {
  position: absolute;
  top: -424px;
  width: 790px;
  height: 930px;
  background-image: url("/images/logo_page_art.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.logo-page-art.left {
  left: -400px;
}
.logo-page-art.right {
  right: -400px;
}

@media (max-width: 1200px) {
  .logo-page-art {
    display: none;
  }
}
.divider {
  width: 150px;
  height: 20px;
  background-image: url("/images/divider.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 500px) {
  .divider {
    width: 117px;
    height: 16px;
  }
}
.header-nav-cc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.header-nav-cc .logo-ascii-art {
  width: 200px;
  height: 250px;
  background-image: url("/images/logo_ascii_art.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 500px) {
  .header-nav-cc .logo-ascii-art {
    width: 150px;
    height: 195px;
  }
}
.header-nav-cc nav {
  display: flex;
  gap: 20px;
}
.header-nav-cc nav a {
  font-family: SourceCodePro, monospace;
  font-size: 16px;
  color: #bbb;
  text-decoration: none;
}
.header-nav-cc nav a:hover {
  color: #fff;
  font-weight: bold;
}
.header-nav-cc nav a:visited {
  color: #bbb;
}
.header-nav-cc nav a.active {
  position: relative;
  color: #fff;
  font-weight: bold;
}
.header-nav-cc nav a.active::after {
  content: "^";
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  transform: translateX(-50%);
}
.header-nav-cc .mobile-nav {
  flex-direction: column;
  gap: 10px;
  width: 152px;
}
.header-nav-cc .mobile-nav .row {
  display: flex;
  justify-content: space-between;
}
.header-nav-cc .mobile-nav a.active::after {
  display: none;
}
.header-nav-cc .mobile-nav {
  display: none;
}
@media (max-width: 500px) {
  .header-nav-cc .desktop-nav {
    display: none;
  }
  .header-nav-cc .mobile-nav {
    display: flex;
  }
}

.section-open-for-business {
  width: 380px;
}
.section-open-for-business h1 {
  margin-bottom: 25px;
  font-family: SourceCodePro, monospace;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}
.section-open-for-business p {
  font-family: Inter, sans-serif;
  font-size: 16px;
}
.section-open-for-business p.first {
  margin-bottom: 10px;
}
.section-open-for-business p.second {
  text-align: right;
  margin-bottom: 25px;
}
.section-open-for-business a {
  position: relative;
  font-family: SourceCodePro, monospace;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}
.section-open-for-business a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.2s ease;
}
.section-open-for-business a:hover::after {
  width: 100%;
}
.section-open-for-business a:visited {
  color: #fff;
}

@media (max-width: 500px) {
  .section-open-for-business {
    width: auto;
    margin: 0 30px;
  }
  .section-open-for-business h1 {
    line-height: 25px;
  }
}
.footer-cc {
  font-family: AnonymousPro, monospace;
  font-size: 14px;
}

.projects-cc .header {
  margin-bottom: 60px;
}
.projects-cc .project-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0;
}
.projects-cc .project-container a {
  transition: scale 0.2s ease;
}
.projects-cc .project-container a:hover {
  scale: 1.2;
}
.projects-cc .project-container .license {
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.projects-cc .project-container .license img {
  width: 24px;
  height: 24px;
  margin-bottom: 0;
}
.projects-cc .project-container .license span {
  font-family: SourceCodePro, monospace;
  font-weight: bold;
  font-size: 16px;
  writing-mode: vertical-rl;
  color: #00CC99;
}
.projects-cc .project-container img {
  margin-bottom: 35px;
  width: 400px;
  height: 260px;
  box-shadow: 0px 4px 4px 10px rgba(0, 0, 0, 0.2509803922);
}
.projects-cc .project-container h1 {
  margin-bottom: 20px;
  font-family: SourceCodePro, monospace;
  font-weight: bold;
  font-size: 24px;
}
.projects-cc .project-container p {
  margin-bottom: 25px;
  width: 350px;
  font-family: Inter, sans-serif;
  font-size: 16px;
}
.projects-cc .project-container .links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.projects-cc .project-container .links a {
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.projects-cc .project-container .links .gitlab {
  width: 20px;
  height: 20px;
  background-image: url("/images/gitlab_logo.svg");
}
.projects-cc .project-container .links .link {
  background-image: url("/images/link.svg");
}
.projects-cc .project-container .links .uni {
  background-image: url("/images/uni.svg");
}
.projects-cc .project-container .links .case {
  background-image: url("/images/case.svg");
}
.projects-cc .projects-row {
  display: flex;
  gap: 80px;
}
.projects-cc .projects-row .divider {
  display: none;
}
.projects-cc .projects-row .project-container.left p {
  text-align: right;
}
.projects-cc .projects-row .project-container.left .links {
  justify-content: flex-end;
  width: 350px;
}
.projects-cc .projects-row .project-container.right .links {
  justify-content: flex-start;
  width: 350px;
}
.projects-cc .open-for-business {
  margin: 60px 0;
}
.projects-cc .footer {
  margin: 30px;
}

@media (max-width: 1000px) {
  .projects-cc .projects-row {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  .projects-cc .projects-row .divider {
    display: block;
  }
  .projects-cc .projects-row .project-container.left p {
    text-align: left;
  }
  .projects-cc .projects-row .project-container.left .links {
    justify-content: center;
  }
  .projects-cc .projects-row .project-container.right .links {
    flex-direction: row-reverse;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .projects-cc .header {
    margin-bottom: 40px;
  }
  .projects-cc .project-container {
    margin: 40px 30px;
  }
  .projects-cc .project-container img {
    margin-bottom: 20px;
    width: 100%;
    height: auto;
  }
  .projects-cc .project-container h1 {
    margin-bottom: 15px;
  }
  .projects-cc .project-container p {
    width: 100%;
  }
  .projects-cc .project-container .license {
    position: unset;
    flex-direction: row;
    margin-bottom: 10px;
  }
  .projects-cc .project-container .license span {
    writing-mode: horizontal-tb;
  }
  .projects-cc .projects-row .project-container.left .links, .projects-cc .projects-row .project-container.right .links {
    width: 100%;
  }
  .projects-cc .open-for-business {
    margin: 40px 0;
  }
}

/*# sourceMappingURL=projects.css.map */
