@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  margin: 0;
  padding: 0;
  color: #09090b;
  font-weight: 400;
  background-color: #fafafa;
}

.container {
  height: 100vh;
  width: 100%;
  padding: 30px 20px 20px;
  margin: 0 auto;
  max-width: 600px;
}

.profile {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-image {
  border: 1px solid #d4d4d6;
  border-radius: 13px;
  padding: 3px;
}

.profile img {
  border-radius: 10px;
  width: 80px;
  height: 80px;
  display: block;
}

h1 {
  font-size: 25px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

h2,
.description {
  font-size: 15px;
  font-weight: 400;
  color: #71717b;
  margin: 0;
  padding: 0;
}

.description a {
  color: #fff;
  border-radius: 7px;
  padding: 5px 9px;
  background-color: #09090b;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  margin-top: 10px;
}

.categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.category-label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13px;
  font-weight: 600;
  color: #a1a1aa;
}

.category ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 0 20px 0;
}

.category li {
  flex: 1;
  margin: 0;
  padding: 0;
}

.category a {
  margin-left: 40px;
  padding: 10px 12px;
  text-decoration: none;
  font-weight: 600;
  display: block;
  background-color: #fff;
  border-radius: 7px;
  border: 1px solid #e4e4e7;
  position: relative;
}

.category a span {
  font-weight: 400;
}

.category a:hover {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #d4d4d6;
  transform: translateY(-2px);
}

.name {
  font-weight: 500;
  font-size: 20px;
  color: #09090b;
}

.info {
  font-size: 15px;
  margin-top: 7px;
  font-weight: 400;
  line-height: 1.5;
  color: #71717b;
}

.project-image {
  position: absolute;
  left: -40px;
}

.project-image img {
  border-radius: 3px;
  width: 30px;
  height: 30px;
  display: block;
}

.dead-link {
  background-color: #eaeaea;
}
