@import url("https://fonts.googleapis.com/css2?family=Gamja+Flower&family=Nanum+Gothic&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
.container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background-color: #95dac1;
}
.profile_container {
  width: 18%;
  height: 70%;
  background-color: white;
  border-radius: 5px;
  box-shadow: 10px 5px 5px rgba(0, 0, 0, 10%);
  font-family: "Gamja Flower", cursive;
}
.profile_image {
  text-align: center;
  margin-top: 20px;
}
.profile_image > img {
  width: 200px;
  border-radius: 50%;
}
.profile_name {
  text-align: center;
}
.profile_name--top {
  font-size: 50px;
}
.profile_promise {
  text-align: center;
  margin-top: 30px;
  padding: 0px 50px 0px 50px;
  font-size: 24px;
}
.profile_promise a {
  display: inline-block;
}
.profile_desc {
  margin-top: 30px;
}
.profile_desc li {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}
.profile_desc--mail > img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.profile_desc--github > a {
  text-decoration: none;
  color: inherit;
  display: flex;
}
.profile_desc--github > a > img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.profile_desc--youtube > a {
  text-decoration: none;
  color: inherit;
  display: flex;
}
.profile_desc--youtube > a > img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.portfolio_container {
  width: 60%;
  height: 70%;
  background-color: white;
  border-radius: 5px;
  box-shadow: 10px 5px 5px rgba(0, 0, 0, 10%);
}

.slick-slider,
.slick-list {
  height: 100%;
}
.slick-dots {
  display: flex;
  margin-top: 8px;
  justify-content: center;
}
.slick-dots li {
  margin-right: 5px;
}
.slick-dots li.slick-active button {
  background: green;
  color: green;
}
.slick-dots li button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: white;
  border: none;
  color: white;
}
.slick-slide {
  text-align: -webkit-center;
  font-family: "Nanum Gothic", sans-serif;
  line-height: 1.5;
}
.slick-slide:nth-child(2) img {
  width: 75%;
  height: 420px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.slick-slide:nth-child(3) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slick-slide:nth-child(3) .portfolio_content--image {
  background-image: url("./portfolio_youtube.jpg");
  height: 600px;
  width: 460px;
  margin: 20px;
  margin-right: 40px;
}
.portfolio_container a:visited,
a:active,
a:link,
a {
  color: black;
  text-decoration: none;
}
.portfolio_container a:hover {
  color: green !important;
}
.portfolio_content--image + div {
  text-align: center;
  width: 50%;
}

.slick-slide h3 a {
  text-decoration: none;
}
.portfolio_page3 {
  padding-top: 50px;
}
.portfolio_page3 > hr {
  margin: 40px;
}
.portfolio_page3 > div > div > p > a {
  text-decoration: none;
}

.portfolio_page3--top,
.portfolio_page3--bottom {
  display: flex;
}
.portfolio_page3 ul li {
  list-style: disc;
  line-height: 1.8;
}
.portfolio_page3--top > div:nth-child(1),
.portfolio_page3--bottom > div:nth-child(1) {
  margin-right: 50px;
  width: 500px;
  padding: 10px;
  line-height: 1.8;
}
.portfolio_page3--top > div:nth-child(2),
.portfolio_page3--bottom > div:nth-child(2) {
  text-align: left;
}

@media (max-width: 1340px) {
  .profile_name--top a {
    font-size: 45px;
  }
}

@media (max-width: 1130px) {
  .container {
    flex-direction: column;
  }
  .profile_container {
    display: flex;
    margin-top: 20px;
    width: 80%;
    height: 30%;
  }
  .profile_image {
    text-align: start;
  }
  .profile_name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
  }
  .profile_promise {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 38px 0px 0px;
  }
  .profile_desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0px;
    margin-right: 10px;
  }
  .portfolio_container {
    margin-top: 20px;
    width: 80%;
  }
}
