.reddot {
  color: #a40822;
}

#top {
  scroll-margin-top: 500px;
}

.section-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}
.section-header .circle-art {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-42%, -76%);
  height: 1670px;
  width: 1550px;
  background-image: url(/images/circle_art.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.section-header .content-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.section-header .content-container .tagline-container {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 23px;
}
.section-header .content-container .tagline-container .logo {
  position: relative;
  width: 170px;
  height: 170px;
  background-image: url(/images/logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.section-header .content-container .tagline-container .tagline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-header .content-container .tagline-container .tagline .cd {
  line-height: 50px;
  font-family: MarckScript, serif;
  font-size: 78px;
}
.section-header .content-container .tagline-container .tagline .sc {
  line-height: 50px;
  font-family: CourierPrime, monospace;
  font-size: 70px;
}
.section-header .content-container .tagline-container .tagline .bl,
.section-header .content-container .tagline-container .tagline .ab {
  line-height: 50px;
  font-family: Spectral, serif;
  font-size: 70px;
}
.section-header .content-container nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-header .content-container nav .divider {
  width: 4px;
  height: 20px;
  background-image: url(/images/divider.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.section-header .content-container nav a {
  font-family: Sen, sans-serif;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  transition: color 0.2s ease;
}
.section-header .content-container nav a:hover {
  color: #808080;
}
.section-header .content-container .triangle {
  width: 12px;
  height: 9px;
  margin-top: 30px;
  background-image: url(/images/triangle.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 1000px) {
  .section-header .content-container {
    flex-direction: column;
    align-items: center;
  }
  .section-header .content-container .logo .name-art {
    display: none;
  }
  .section-header .content-container .tagline-container {
    flex-direction: column;
    gap: 50px;
  }
}
@media (max-width: 700px) {
  .section-header .circle-art {
    transform: translate(-31%, -89%);
    width: 1250px;
    height: 1250px;
  }
  .section-header .content-container {
    margin-top: 70px;
    gap: 10px;
  }
  .section-header .content-container .tagline-container {
    gap: 40px;
    margin-bottom: 20px;
  }
  .section-header .content-container .tagline-container .logo {
    width: 130px;
    height: 130px;
  }
  .section-header .content-container .tagline-container .tagline {
    gap: 8px;
  }
  .section-header .content-container .tagline-container .tagline .cd {
    font-size: 56px;
  }
  .section-header .content-container .tagline-container .tagline .sc {
    font-size: 50px;
  }
  .section-header .content-container nav {
    flex-direction: column;
    gap: 0px;
  }
  .section-header .content-container nav .divider {
    rotate: 90deg;
  }
}
@media (max-width: 500px) {
  .section-header .circle-art {
    transform: translate(-31%, -94%);
    width: 1000px;
    height: 1000px;
  }
  .section-header .content-container {
    margin-top: 10px;
  }
  .section-header .content-container .tagline-container .logo {
    width: 110px;
    height: 110px;
  }
  .section-header .content-container .tagline-container .tagline {
    gap: 0px;
  }
  .section-header .content-container .tagline-container .tagline .cd {
    font-size: 46px;
  }
  .section-header .content-container .tagline-container .tagline .sc {
    font-size: 40px;
  }
}
.section-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 25px;
}
.section-footer .art-line {
  z-index: -1;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 1960px;
  height: 580px;
  background-image: url(/images/line_art.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.section-footer .title {
  margin-bottom: 50px;
  text-align: center;
  font-family: Sen, sans-serif;
  font-size: 100px;
  font-weight: bold;
}
.section-footer .link {
  margin-bottom: 50px;
  text-decoration: none;
  font-family: MarckScript, serif;
  font-size: 70px;
  color: #fff;
}
.section-footer a {
  transition: color 0.2s ease;
}
.section-footer a:hover {
  color: #808080;
}
.section-footer .logo {
  margin-bottom: 40px;
  width: 125px;
  height: 125px;
  background-image: url(/images/logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.section-footer .c {
  margin-bottom: 20px;
  font-family: CourierPrime, monospace;
  font-size: 14px;
  color: #636363;
}
.section-footer nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-footer nav .divider {
  width: 4px;
  height: 20px;
  background-image: url(/images/divider_dark.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.section-footer nav a {
  font-family: Sen, sans-serif;
  font-size: 18px;
  text-decoration: none;
  color: #2e2e2e;
  transition: color 0.2s ease;
}
.section-footer nav a:hover {
  color: #808080;
}

@media (max-width: 800px) {
  .section-footer .art-line {
    bottom: 40px;
    height: 525px;
  }
  .section-footer .title {
    font-size: 80px;
  }
  .section-footer .link {
    font-size: 60px;
  }
  .section-footer .logo {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 700px) {
  .section-footer .art-line {
    bottom: 210px;
  }
  .section-footer nav {
    flex-direction: column;
    gap: 0px;
  }
  .section-footer nav .divider {
    rotate: 90deg;
  }
}
@media (max-width: 600px) {
  .section-footer .art-line {
    height: 480px;
  }
  .section-footer .title {
    margin-bottom: 40px;
    font-size: 60px;
  }
  .section-footer .link {
    margin-bottom: 40px;
    font-size: 40px;
  }
  .section-footer .logo {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 450px) {
  .section-footer .art-line {
    height: 410px;
  }
  .section-footer .title {
    margin-bottom: 30px;
    font-size: 50px;
  }
  .section-footer .link {
    margin-bottom: 30px;
    font-size: 30px;
  }
  .section-footer .logo {
    width: 80px;
    height: 80px;
  }
  .section-footer nav {
    padding-bottom: 25px;
  }
}
.about-cc {
  overflow: hidden;
}
.about-cc #about {
  scroll-margin-top: 100px;
}
.about-cc .section-about {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 200px;
}
.about-cc .section-about .portrait-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 14px;
}
.about-cc .section-about .portrait-container .bg-art {
  z-index: -1;
  position: absolute;
  top: -10px;
  left: -60px;
  width: 335px;
  height: 275px;
  background-image: url(/images/square_art_3.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.about-cc .section-about .portrait-container .portrait {
  width: 205px;
  height: 250px;
  background-image: url(/images/portrait_gray.jpeg);
  background-size: 150%;
  background-repeat: no-repeat;
  background-position: 52% 50%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.about-cc .section-about .portrait-container .social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.about-cc .section-about .portrait-container .social-links a {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.2s ease;
}
.about-cc .section-about .portrait-container .social-links a:hover {
  transform: scale(1.2);
}
.about-cc .section-about .portrait-container .social-links .gitlab {
  background-image: url(/images/gitlab.png);
}
.about-cc .section-about .portrait-container .social-links .linkedin {
  background-image: url(/images/linkedin.png);
}
.about-cc .section-about .portrait-container .social-links .x {
  background-image: url(/images/x.png);
}
.about-cc .section-about .content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about-cc .section-about .content p {
  max-width: 300px;
  font-family: Sen, sans-serif;
  font-size: 18px;
}
@media (max-width: 700px) {
  .about-cc .section-about {
    flex-direction: column;
    align-items: center;
    margin-bottom: 70px;
  }
  .about-cc .section-about .content p {
    margin: 0 30px;
  }
}

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