@import url(./common.css);
@import url(./header.css);
@font-face {
  font-family: "NanumSquareNeo-Variable";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_11-01@1.0/NanumSquareNeo-Variable.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.mainInfo {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  font-family: "NanumSquareNeo-Variable";
  display: flex;
  align-items: center;
}
.mainInfo .infoCon {
  border-radius: 20px;
  max-width: 1200px;
  height: 600px;
  background-color: white;
  margin: 0 auto;
  display: flex;
  padding: 0;
  position: relative;
  align-items: center;
}
.mainInfo .infoCon h2 {
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  font-size: 35px;
  margin: 0;
}
.mainInfo .infoCon figure {
  width: 35%;
  height: 100%;
  margin-right: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mainInfo .infoCon figure img {
  width: 70%;
}
.mainInfo .infoCon figure figcaption {
  margin-top: 20px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.mainInfo .infoCon figure figcaption span {
  font-size: 1rem;
}
.mainInfo .infoCon .infoBox {
  height: 60%;
  display: flex;
  flex-direction: column;
}
.mainInfo .infoCon .info1 {
  line-height: 180%;
  height: 40%;
  margin: 0;
  display: flex;
  align-items: center;
}
.mainInfo .infoCon .info2 {
  display: flex;
  flex-wrap: wrap;
  height: 45%;
  margin: 0;
  padding: 0;
}
.mainInfo .infoCon .info2 li {
  width: 50%;
  height: 80px;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}
.mainInfo .infoCon .info2 li span {
  display: block;
  font-size: 1rem;
  margin-top: 10px;
}
.mainInfo .infoCon .info2 li svg {
  width: 30px;
  height: 30px;
  margin-right: 20px;
}
.mainInfo .infoCon .info2 li #git:hover {
  color: rgb(216, 85, 96);
}
.mainInfo .infoCon .info2 .link {
  display: flex;
  align-items: end;
  height: 60%;
  position: relative;
}
.mainInfo .infoCon .info2 .link span {
  margin-right: 70px;
  display: flex;
  align-items: end;
  transform: translateY(-6px);
  position: relative;
}
.mainInfo .infoCon .info2 .link span a::after {
  content: "";
  background-color: rgb(108, 108, 108);
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
}
.mainInfo .infoCon .info2 .link span:nth-child(1) {
  font-size: 0.8rem;
  position: absolute;
  top: 0;
}
.mainInfo .infoCon .info2 .link span:nth-child(2)::after {
  content: "&";
  position: absolute;
  right: -40px;
  top: 1px;
}

section.prosConsInfo {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  padding: calc((100vh - 400px) / 2) 0;
  background-color: #3fa4d9;
  font-family: "NanumSquareNeo-Variable";
  display: flex;
}
section.prosConsInfo .prosCons {
  width: 1200px;
  margin: 0 auto;
  height: 450px;
  background-color: white;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  position: relative;
  z-index: 11;
}
section.prosConsInfo .prosCons::after {
  content: "";
  position: absolute;
  top: 9%;
  left: 50%;
  width: 1px;
  height: 82%;
  background: linear-gradient(180deg, rgb(239, 249, 255) 0%, rgb(63, 164, 217) 61%, rgb(204, 237, 255) 100%);
}
section.prosConsInfo .prosCons article {
  width: 49%;
  height: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
section.prosConsInfo .prosCons article:nth-child(1) h2 {
  color: rgb(53, 53, 255);
}
section.prosConsInfo .prosCons article:nth-child(2) h2 {
  color: rgb(216, 85, 96);
}
section.prosConsInfo .prosCons article li {
  margin: 40px 0;
  padding: 0 10px;
  word-break: keep-all;
  line-height: 130%;
  transition: 0.4s;
}
section.prosConsInfo .prosCons article li:hover {
  color: rgb(216, 85, 96);
}

section.skillInfo {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}
section.skillInfo .skillCon {
  max-width: 1200px;
  margin: calc((100vh - 760px) / 2) auto;
  height: 760px;
  background-color: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  z-index: 11;
}
section.skillInfo .skillCon h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin: 30px 0 0;
}
section.skillInfo .skillCon ul {
  display: flex;
  flex-wrap: wrap;
  height: 620px;
  padding: 0;
}
section.skillInfo .skillCon ul li {
  width: 25%;
  height: 34%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.skillInfo .skillCon ul li img {
  width: 150px;
}

section.timlineInfo {
  position: relative;
  width: 100%;
  margin: 50px auto 200px;
  height: 100vh;
  padding: calc((100vh - 800px) / 2) 0;
  background-color: #3fa4d9;
  font-family: "NanumSquareNeo-Variable";
  display: flex;
}
section.timlineInfo .timlineCon {
  width: 1200px;
  margin: 0 auto;
  height: 800px;
  background-color: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}
section.timlineInfo .timlineCon h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin: 40px 0 30px;
}
section.timlineInfo .timlineCon ul {
  width: 100%;
  height: 100%;
  margin: 0;
  position: relative;
}
section.timlineInfo .timlineCon ul li {
  position: absolute;
  width: 46%;
  height: 100px;
  opacity: 0.2;
  transition: 1s;
}
section.timlineInfo .timlineCon ul li:nth-child(2n+1) {
  text-align: right;
  left: 0;
}
section.timlineInfo .timlineCon ul li:nth-child(2n) {
  text-align: left;
  right: 0;
}
section.timlineInfo .timlineCon ul li:nth-child(1) {
  top: 100px;
}
section.timlineInfo .timlineCon ul li:nth-child(2) {
  top: 200px;
}
section.timlineInfo .timlineCon ul li:nth-child(3) {
  top: 300px;
}
section.timlineInfo .timlineCon ul li:nth-child(4) {
  top: 400px;
}
section.timlineInfo .timlineCon ul li:nth-child(5) {
  top: 500px;
}
section.timlineInfo .timlineCon ul li:nth-child(6) {
  top: 600px;
}
section.timlineInfo .timlineCon ul li span {
  display: block;
  margin: 10px 0;
  font-size: 0.7rem;
  color: #6d6d6d;
}
section.timlineInfo .timlineCon ul svg {
  position: absolute;
  top: -62px;
  left: 53%;
  transform: translateX(-50%);
}
section.timlineInfo .timlineCon .Tline {
  position: absolute;
  bottom: 0%;
  left: 50%;
  width: 2px;
  height: 76%;
  background: linear-gradient(180deg, rgb(239, 249, 255) 0%, rgb(63, 164, 217) 61%, rgb(204, 237, 255) 100%);
}
section.timlineInfo .timlineCon .Tline span {
  display: block;
  background-color: white;
  border: 1px solid #3fa4d9;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  transform: translateY(36px) translateX(-44%);
}
section.timlineInfo .timlineCon .Tline span:nth-child(1) {
  top: 100px;
}
section.timlineInfo .timlineCon .Tline span:nth-child(2) {
  top: 200px;
}
section.timlineInfo .timlineCon .Tline span:nth-child(3) {
  top: 300px;
}
section.timlineInfo .timlineCon .Tline span:nth-child(4) {
  top: 400px;
}
section.timlineInfo .timlineCon .Tline span:nth-child(5) {
  top: 500px;
}

.arrow {
  cursor: pointer;
  position: fixed;
  bottom: 5%;
  left: 50%;
  margin-left: -20px;
  width: 50px;
  height: 50px;
  transition: 0.6s;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0yOTMuNzUxLDQ1NS44NjhjLTIwLjE4MSwyMC4xNzktNTMuMTY1LDE5LjkxMy03My42NzMtMC41OTVsMCwwYy0yMC41MDgtMjAuNTA4LTIwLjc3My01My40OTMtMC41OTQtNzMuNjcyICBsMTg5Ljk5OS0xOTBjMjAuMTc4LTIwLjE3OCw1My4xNjQtMTkuOTEzLDczLjY3MiwwLjU5NWwwLDBjMjAuNTA4LDIwLjUwOSwyMC43NzIsNTMuNDkyLDAuNTk1LDczLjY3MUwyOTMuNzUxLDQ1NS44Njh6Ii8+DQo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjIwLjI0OSw0NTUuODY4YzIwLjE4LDIwLjE3OSw1My4xNjQsMTkuOTEzLDczLjY3Mi0wLjU5NWwwLDBjMjAuNTA5LTIwLjUwOCwyMC43NzQtNTMuNDkzLDAuNTk2LTczLjY3MiAgbC0xOTAtMTkwYy0yMC4xNzgtMjAuMTc4LTUzLjE2NC0xOS45MTMtNzMuNjcxLDAuNTk1bDAsMGMtMjAuNTA4LDIwLjUwOS0yMC43NzIsNTMuNDkyLTAuNTk1LDczLjY3MUwyMjAuMjQ5LDQ1NS44Njh6Ii8+DQo8L3N2Zz4=");
  background-size: contain;
  animation: bounce 2s infinite;
  z-index: 10;
}

.GoTop {
  position: fixed;
  bottom: 60px;
  right: 50px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: rgba(216, 85, 96, 0.9);
  color: white;
  opacity: 0;
  transition: 1s;
  z-index: 99;
  cursor: pointer;
}
.GoTop:hover span {
  transform: scale(1.05);
}

@media only screen and (max-width: 1200px) {
  section.mainInfo {
    width: 99%;
    padding: 0 10px;
  }
  section.mainInfo figure {
    width: calc(300px + 5vw);
    margin: 0;
  }
  section.mainInfo figure img {
    width: 176px;
  }
  section.mainInfo .infoCon {
    padding: 60px 20px;
  }
  section.mainInfo .infoCon .info1 {
    line-height: 180%;
  }
  section.mainInfo .infoCon .info2 {
    display: flex;
    flex-wrap: wrap;
  }
  section.mainInfo .infoCon .info2 li {
    width: 50%;
    height: 80px;
    display: flex;
    align-items: center;
    font-size: 0.7rem;
  }
  section.mainInfo .infoCon .info2 li span {
    display: block;
    font-size: 0.9rem;
    margin-top: 10px;
  }
  section.mainInfo .infoCon .info2 li svg {
    width: 30px;
    height: 30px;
    margin-right: 20px;
  }
  section.mainInfo .infoCon .info2 li #git:hover {
    color: rgb(216, 85, 96);
  }
  section.mainInfo .infoCon .info2 .link span {
    margin-right: 30px;
  }
  section.mainInfo .infoCon .info2 .link span:nth-child(2)::after {
    content: "&";
    position: absolute;
    right: -20px;
    top: 1px;
  }
  section.skillInfo {
    width: 98%;
    margin: 0 auto;
    margin-top: 50px;
  }
  section.skillInfo .skillCon ul li img {
    width: 120px;
  }
  section.prosConsInfo .prosCons {
    width: 98%;
    height: 500px;
  }
  section.timlineInfo .timlineCon {
    width: 98%;
  }
  .GoTop {
    bottom: 60px;
    right: 40px;
  }
}/*# sourceMappingURL=index.css.map */