:root {
  --background: #101010;
  --text-primary: #ffffff;
  --text-secondary: #a1a1a1;
  --text-muted: #717171;
  --font: "Outfit", -apple-system, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

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

body {
  background: var(--background);
  color: var(--text-primary);
  font-family: var(--font);
  line-height: 1.4em;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.44, 0, 0.56, 1);
}

a:hover {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: var(--text-primary);
  text-underline-offset: 3px;
}

.Page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1200px;
  max-width: 100%;
  padding: 160px 16px;
  margin: 0 auto;
}

.Header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  width: 800px;
  max-width: 100%;
}

.Header__name {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.Main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 800px;
  max-width: 100%;
  padding-top: 40px;
}

.Intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
}

.Intro__paragraph {
  font-size: 14px;
  line-height: 24px;
  color: var(--text-secondary);
}

.Intro__link {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: var(--text-secondary);
  text-underline-offset: 3px;
}

.Section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 100%;
}

.Section__title {
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.Experience {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.Experience__company {
  display: flex;
  flex-direction: column;
}

.Experience__company-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  color: var(--text-primary);
}

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

.Experience__job-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.Experience__period {
  font-size: 13px;
  line-height: 24px;
  color: var(--text-muted);
}

.Experience__position {
  font-size: 13px;
  line-height: 24px;
  color: var(--text-primary);
}

.Experience__bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
}

.Experience__bullet {
  font-size: 13px;
  line-height: 20px;
  color: var(--text-secondary);
}

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

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

.Skills__label {
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.Skills__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
  line-height: 24px;
  color: var(--text-secondary);
}

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

.Contact__link {
  font-size: 14px;
  line-height: 24px;
  color: var(--text-secondary);
}

.Contact__link:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.Footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 800px;
  max-width: 100%;
  margin-top: 64px;
}

.Footer__line {
  height: 1px;
  background: rgb(255, 255, 255);
  opacity: 0.1;
}

.Footer__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 13px;
  line-height: 24px;
  color: var(--text-muted);
}
