:root {
  /* --font-ibm-plex-mono: 'IBM Plex Mono', monospace; */
  --font-ibm-plex-mono: 'Roboto Mono', monospace;
  --body-max-width: 720px;

  --h-16: 4rem;
  /* 6px */
  --space-2: 0.5rem;
  /* 14px */
  --space-4: 1rem;
  /* 20px */
  --space-6: 1.5rem;
  /* 36px */
  --space-10: 2.5rem;
  /* 112px */
  --space-32: 8rem;

  /* 14px */
  --text-base: 0.9375rem;
  /* 18px */
  --text-xl: 1.25rem;

  --font-semibold: 600;
  --font-bold: 700;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*,
*::before,
*::after {
  color: #16191b;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--space-4);
}

ul li {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
  font-weight: var(--font-bold);
}

.bold {
  font-weight: var(--font-bold);
}


body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-ibm-plex-mono);
  max-width: var(--body-max-width);
  margin-left: auto;
  margin-right: auto;
  font-size: var(--text-base);
  line-height: var(--text-xl);
}

.header {
  background-color: #fff;
  max-width: var(--body-max-width);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 10;
  height: var(--h-16);
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0 var(--space-6);
  display: flex;
  gap: var(--space-4);
}


.main {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  padding: var(--space-32) var(--space-6);
}

section {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

section>* {
  flex: 1 1 100%;
}

.focus-on {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

section ul li {
  margin: 0;
  padding-left: var(--space-6);
  position: relative;
}

section ul li::before {
  content: "— ";
  position: absolute;
  left: 0;
  top: 0;
  color: inherit;
  flex-shrink: 0;
}

.expirience-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);

}

.expirience-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

h1,
h2 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);

}

.footer {
  background-color: #fff;
  max-width: var(--body-max-width);
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--h-16);
  padding: 0 var(--space-4);
}