*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  padding: 2rem;
}

.bar {
  width: 100%;
  height: 4px;
  background: #E63946;
}

.content {
  padding: 2rem 0;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.bio {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

ul {
  list-style: none;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.25rem;
}

li a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
}

li a::before {
  content: '›';
  position: absolute;
  right: calc(100% + 0.5rem);
  color: #E63946;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s ease;
}

li a:hover::before {
  opacity: 1;
}

.desc {
  font-size: 1rem;
  color: #555;
}
