html,
body {
  font-family: 'Lato', 'Noto Sans TC', sans-serif;
  margine: 0;
  padding: 0;
  color: #333333;
  background-color: #f6f7f8;
}

/* header */
header {
  height: 60px;
  color: #666666;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.08);
}

nav {
  max-width: 820px;
  margin: 0 auto;
  height: 100%;
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-title {
  font-weight: bold;
  letter-spacing: 1px;
}

.nav-link {
  color: #666666;
}

/* Main */
main {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 20px;
}

h3, h6 {
  font-weight: 500;
}

h2 {
  font-size: 32px;
  margin: 24px 0 8px;
}

h3 {
  font-size: 21px;
  margin: 0px 0px 8px;
}
h5 {
  font-size: 18px;
  /* margin-left: -20px; */
}
h6 {
  font-size: 17px;
  margin: 20px 0px;
}

section {
  margin-bottom: 48px;
}

p , h6{
  color: #666666;
}

/* personal Info */
.avatar {
  text-align: center;
}
.avatar-img {
  width: 200px;
  height: 200px;
  border-radius: 50px;
}
.name {
  text-align: center;
  font-size: 32px;
  margin: 20px 0;
}
.social-media {
  text-align: center;
  margin-bottom: 20px;
}
.social-media-link {
  color: #999999;
  text-decoration: none;
  margin: 0px 5px;
}
.social-media-link:hover {
  color: skyblue;
}

.personal-info .title {
  font-size: 20px; /* 內容置中 */
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  letter-spacing: 2px; /* 字元間距 */
  color: #1e90ff;
  text-decoration: underline;
  text-decoration-color: #1e90ff;
}

/* skill section */
.skills,
.icons {
  display: flex;
  flex-direction: column;
}
.skill {
  width: 100%;
  border-top: 1px solid #999999;
  padding-top: 16px;
}

/* Experience */
hr {
  border: 0px;
  height: 1px;
  background-color: #cccccc;
  margin: 20px 0px;
}
.company,
.duration {
  font-size: 12px;
  margin-right: 20px;
}
a,
.company {
  color: #0058B0;
  text-decoration: underline;
  text-decoration-color: #0058B0;
}

.duration {
  color: #666666;
}
.fa-building,
.fa-calendar-alt {
  margin-right: 5px;
}
.experience-section .Product-title {
  text-decoration: underline;
  color: #666666;
}


/* Product */
.product_ul {
  border-left: 5px solid rgb(233, 233, 233);
}


@media (min-width: 640px) {
  /* skill section */
  .skills,
  .icons {
    flex-direction: row;
    justify-content: space-between;
  }
  .skill {
    width: 30%;
  }
}

