:root {
  --primary-color: #7dd3fc;
  --secondary-color: #38bdf8;
  --background-color: #292524;
  --dark-font-color: #cbd5e1;
  --light-font-color: #f1f5f9;
  --separator-color: #475569;
}

html {
  font-family: "Inter", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  color: var(--light-font-color);
  background-color: var(--background-color);
}

p,
li {
  line-height: 1.3;
}

p {
  margin: 0;
}

em {
  color: var(--dark-font-color);
}

li {
  margin-bottom: 0.5rem;
}

li::marker {
  color: var(--primary-color);
}

a {
  text-decoration-color: var(--primary-color);
  color: var(--light-font-color);
}

a:hover {
  background-color: var(--primary-color);
  color: var(--background-color);
}

.container {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.header {
  display: flex;
}

.profile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.profile-picture {
  width: 140px;
  margin-right: 1rem;
}

.name {
  font-size: 2.6rem;
  margin: 0;
  font-weight: 400;
}

.contact {
  display: flex;
}

.contact > *:not(:last-child) {
  margin-right: 1rem;
}

.job {
  font-size: 1.4rem;
  color: var(--dark-font-color);
}

.section-title {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid var(--separator-color);
  padding-bottom: 0.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.experience-sub-title {
  margin-bottom: 1.5rem;
}

.experience-title {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 400;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary-color);
}

.experience-metadata {
  display: flex;
}

.duration {
  font-size: 1rem;
}
