@import "./main.css";

/* personal info */
.personal__info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.person__img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: solid 1px var(--text-color);
}
.info__title {
  font-size: 3rem;
  color: var(--text-color);
  margin: 1.5rem;
}
.info__desk {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
}
/* Work collection wrapper */
.work__collection {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0;
}

.work__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--heading-color);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  min-width: 400px;
  max-width: 600px;
  width: 100%;
  gap: 1rem;
}

.work__title {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.work__link {
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
}

.work__link:hover {
  opacity: 0.7;
}

.work__icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  color: var(--neutral-0);
}
