@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
body {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  font-family: "Noto Sans KR", sans-serif;
}
img {
  width: 100%;
  height: auto;
}
/* header */
header {
  margin-top: 50px;
  height: 400px;
}

.box {
  margin: 0 auto;
  width: 200px;
  height: 200px;
  border-radius: 70%;
  overflow: hidden;
}
.profile {
  width: 100%;
  height: 115%;
  object-fit: cover;
}

.typing-txt {
  display: none;
}
.typing-txt > ul {
  list-style: none;
}
.typing {
  height: 100px;
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
}
.typing ul li {
  display: block;
}
.typing > ul > li:nth-child(1) {
  font-size: 4vh;
  font-weight: bold;
  color: rgb(81, 81, 82);
}
.typing > ul > li:nth-child(2) {
  font-size: 2.5vh;
  color: rgb(125, 125, 128);
}
.typing ul li.on {
  display: inline-block;
  animation-name: cursor;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
}
@keyframes cursor {
  0% {
    border-rignt: 1px solid #fff;
  }
  50% {
    border-right: 1px solid #000;
  }
  100% {
    border-right: 1px silid #fff;
  }
}

/* Logo */
.logo {
  margin-top: 50px;
  margin: 0 auto;
  width: 192px;
  height: 60px;
  overflow: hidden;
}
.logoImg {
  width: 40px;
  height: 40px;

  object-fit: cover;
  padding: 10px;
}

.logoImg:hover {
  opacity: 0.5;
}

/* navigation */
nav {
  border-bottom: #aaa solid 1px;
}
nav ul {
  text-align: center;
}
nav ul li {
  display: inline-block;
  font-size: 2vh;
  /* padding: 8px 30px; */
  padding: 1% 3%;
  color: rgb(125, 125, 128);
  border: rgb(125, 125, 128) solid 1px;
  /* margin: 15px 15px 80px 15px; */
  margin: 1% 1% 10% 1%;
  border-radius: 10px;
}
nav ul li:hover {
  opacity: 0.5;
}

/* About Me */
#about {
  margin-top: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.about-item1 {
  font-size: 3vh;
  color: #535353;
}
.about-item2 {
  margin-left: 10vw;
  color: #646363;
  font-size: 2vh;
}

/* Skill */
#skill {
  margin-top: 200px;
}
#skill > h2 {
  font-size: 5vh;
  color: #535353;
}
/* .skill-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
} */
.skill-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.skill-item1 {
  margin-left: 1vw;
  font-size: 2vh;
  color: #535353;
}
.skill-item2 {
  margin-left: 6vw;
  color: #646363;
  font-size: 2vh;
}
.skill-img {
  width: 10vw;
  height: 20vh;
  object-fit: cover;
  /* margin: 10px 0 10px 0; */
}
/* .skill-p {
  margin: 20px 0 20px 0;
  flex-basis: 70%;
  color: #646363;
  align-self: center;
  font-size: 2vh;
}
.skill-p:first-line {
  font-weight: bold;
  font-size: 2vh;
}
.skill-img {
  flex-basis: 30%;
  width: 10vw;
  height: 20vh;
  object-fit: cover;
  align-self: center;
  margin: 20px 0 20px 0;
} */

/* Project */
#project {
  margin-top: 150px;
}
#project > h2 {
  font-size: 5vh;
  color: #535353;
}
.project-container {
  margin-top: 40px;
  display: flex;
}
.project-thumnail {
  box-shadow: 0px 4px 6px 0px #9f9f9f;
  text-align: center;
}

.project-thumnail img {
  max-width: 500px;
  width: 70%;
  margin: 10px 0 5px 0;
  box-shadow: 0px 4px 6px 0px #9f9f9f;
}
.project-thumnail:hover {
  opacity: 0.8;
}
.myBtn h2 {
  color: #757373;
  font-weight: bold;
  font-size: 20px;
  margin-top: 15px;
}
.myBtn p {
  color: #9c9b9b;
  font-size: 15px;
  padding: 0 20px;
  text-align: left;
}

.repoBtn {
  border: 1px solid rgb(165, 163, 163);
  padding: 5px;
  margin: 5px;
  border-radius: 5%;
  color: #747171;
}
.repoBtn > p:hover {
  opacity: 0.5;
}
/* Project-modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
}
.modal-content {
  background-color: #fefefe;
  padding: 15px;
  border: 1px solid rgb(165, 163, 163);
  width: 40%;
  border-radius: 1.2%;

  overflow-y: scroll;
}
.modal-content::-webkit-scrollbar {
  width: 10px;
}
.modal-content::-webkit-scrollbar-track {
  background-color: #99989800;
}
.modal-content::-webkit-scrollbar-thumb {
  background-color: rgba(187, 186, 186, 0.589);
  border-radius: 5px;
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-content h2 {
  color: #666565;
  margin-top: 20px;
  font-size: 3vh;
}
.modal-content > p {
  display: inline-block;
  font-size: 1.2vw;
  padding: 1% 3%;
  color: rgb(125, 125, 128);
  border: rgb(125, 125, 128) solid 1px;
  margin: 10px 5%;
  border-radius: 5px;
}
.modal-content > p:hover {
  opacity: 0.5;
}
.modal-content img {
  margin-top: 4vh;
  width: 90%;
  height: 100%;
  box-shadow: 2px 8px 10px 2px #9f9f9f;
}
.modal-content li > p {
  margin-top: 30px;
  padding: 20px;
  color: rgb(125, 125, 128);
  font-size: 1.8vh;
}
.modal-content a {
  color: rgb(125, 125, 128);
}

/* footer */
footer {
  margin-top: 70px;
  padding: 50px 0;
  border-top: rgb(125, 125, 128) solid 1px;
  text-align: center;
  color: rgb(125, 125, 128);
}
