@font-face {
  font-family: helvetica;
  src: url(font/Helvetica.ttf);
  font-weight: normal;
}
@font-face {
  font-family: helvetica;
  src: url(font/Helvetica-Bold.ttf);
  font-weight: bold;
}
body {
  display: grid;
  grid-template-columns: 30% 1fr;
  font-family: helvetica;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}

.side-wrap {
  background: #005d84;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #fff;
}

.image-content {
  display: flex;
  justify-content: center;
  border: 2px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 50%;
  padding: 3px;
  align-items: center;
}
.image-content a {
    display:flex;
}
.image-content img {
  width: 110px;
  border-radius: 50%;
}

.side-title {
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: bold;
}

.side-section-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 12px;
}
.side-section-wrap p {
  display: inline-block;
  margin: 0;
}

.skill-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.skill-bar-back {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #fff;
  position: relative;
}

.skill-bar {
  background: #5ab0d5;
  position: absolute;
  inset: 0;
  border-radius: 4px;
}

.lang {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.lang-skill {
  display: flex;
  gap: 4px;
}
.lang-skill span {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
}
.lang-skill span.lang-full {
  background-color: #5ab0d5;
}

.main-wrap {
  padding: 24px 16px;
}

.head {
  padding: 32px;
  text-align: center;
  background: #f5f5f5;
}

.name {
  font-size: 28px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding-bottom: 12px;
  position: relative;
}
.name::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}

.sub-name {
  font-size: 18px;
  margin: 0;
  padding-top: 12px;
  font-weight: normal;
  color: #6c6a6a;
}

.main-content {
  margin: 16px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.title {
  color: #005d84;
  text-transform: uppercase;
  border-bottom: 1px solid #005d84;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 4px;
  margin: 0;
}

.remote {
  font-weight: normal;
  margin-left: 4px;
  font-style: italic;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary {
  margin: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  line-height: 18px;
}

.exp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.exp-title {
  margin: 0;
  font-size: 16px;
}

.exp-date {
  margin: 0;
  color: #005d84;
  font-size: 12px;
  font-weight: bold;
}

.exp-pos {
  margin: 8px 0;
  font-size: 12px;
  font-weight: bold;
}

.exp-desc {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
}
.exp-desc a {
  display: block;
  margin-top: 8px;
  text-decoration: underline;
  color: #5ab0d5;
  text-underline-offset: 2px;
}

.project {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pro-title {
  margin: 0;
  font-size: 16px;
}

.pro-desc {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
}
.pro-desc a {
  display: block;
  margin-top: 8px;
  text-decoration: underline;
  color: #5ab0d5;
  text-underline-offset: 2px;
}

.edu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.edu-degree {
  margin: 0;
  font-size: 16px;
}

.edu-date {
  margin: 0;
  color: #005d84;
  font-size: 12px;
  font-weight: bold;
}

.edu-uni {
  margin: 8px 0;
  font-size: 14px;
  font-weight: bold;
}

@media print {
  .page-break {
    page-break-after: always;
  }
}