* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: white;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  width: 100%;
  padding: 40px 24px;
}

.site-title {
  display: none;
}

.icon-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  margin: 0 auto;
}

.desktop-icon {
  text-decoration: none;
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  width: 110px;
}

.desktop-icon img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.desktop-icon span {
  display: block;
  min-height: 34px;
  line-height: 17px;
  text-align: center;
}

.desktop-icon:hover {
  transform: translateY(-2px);
}

/* writing page */

.page {
  min-height: 100vh;
  width: 100%;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.back-link {
  position: fixed;
  top: 32px;
  left: 32px;
  text-decoration: none;
  color: #111;
  font-size: 14px;
}

.page-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 0 32px 0;
}

.note-list {
  text-align: center;
  font-size: 14px;
}

.note-list p {
  margin: 0 0 16px 0;
}

.note-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}

.note-list li {
  margin-bottom: 8px;
}

/* phone size */

@media (max-width: 600px) {
  .icon-grid {
    gap: 20px;
    flex-wrap: nowrap;
  }

  .desktop-icon {
    width: 76px;
    font-size: 12px;
  }

  .desktop-icon img {
    width: 72px;
    height: 72px;
  }

  .desktop-icon span {
    min-height: 32px;
    line-height: 16px;
  }
}

/* progress area */

.progress-area {
  margin: 32px auto 0 auto;
  width: 260px;
  text-align: center;
}

.progress-label {
  margin: 0 0 14px 0;
  font-size: 14px;
}

.progress-bar {
  width: 100%;
  height: 12px;
  border: 1.5px solid #111;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto;
}

.progress-fill {
  width: 25%;
  height: 100%;
  background: #111;
}

.progress-percent {
  margin: 8px 0 0 0;
  font-size: 14px;
  text-align: center;
}

/* experience */

.experience-link {
  display: block;
  width: fit-content;
  margin: 48px auto 0 auto;
  color: #111;
  text-decoration: none;
  font-size: 14px;
}

.experience-link:hover {
  text-decoration: underline;
}



/* experience page */

.experience-page {
  min-height: 100vh;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 80px 24px 40px 24px;
  font-size: 14px;
  line-height: 1.7;
}

.experience-intro {
  text-align: center;
  margin: 0 auto 56px auto;
}

.experience-intro p {
  margin: 0 0 16px 0;
}

.experience-section {
  margin-bottom: 56px;
  text-align: left;
}

.column-title {
  text-align: left;
  margin: 0 0 28px 0;
  font-size: 14px;
  font-weight: normal;
}

.experience-item,
.skill-group {
  margin-bottom: 28px;
}

.experience-item p,
.skill-group p {
  margin: 0 0 6px 0;
  font-size: 14px;
}


.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 48px auto 0 auto;
  width: 100%;
  font-size: 14px;
}

.footer-links a {
  color: #111;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
