body {
  background-color: #5d5f67;
  color: #e7e7e7;
  font-size: 18px;
  font-family: Consolas, monaco, monospace;
}

#content-container {
  background-color: #404249;
  display: flex;
}
#line-numbers {
  text-align: right;
  margin: 10px;
  font-size: 14px;
  color: #b4b4b4;
}
#content {
  margin: 10px 15px;
}

.section {
  font-weight: 600;
  color: rgb(246, 91, 114);
}
.section:before {
  content: '/';
  color: orange;
}
.subsection,
.margin-left-md {
  margin-left: 15px;
}

#work-experience {
  text-align: justify;
}

#work-experience strong {
  color: #ffdbb0;
}

h1.title-container {
  font-size: 4rem;
}

ul {
  list-style-type: '> ';
}

/* flex */
.display-flex {
  display: flex;
}
.flex-space-between {
  justify-content: space-between;
}
.flex-gap-small {
  gap: 10px;
}
.flex-gap-medium {
  gap: 30px;
}

/* colors */
.red-text {
  color: rgb(246, 91, 114);
}
.orange-text {
  color: orange;
}
.blue-text {
  color: rgb(45, 128, 253);
}

.font-weight-600 {
  font-weight: 600;
}

.margin-bottom-0 {
  margin-bottom: 0;
}
