#resume {
  border-top: .5px solid var(--grey);
  border-bottom: .5px solid var(--grey);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--grey-background);
}

.dot {
  width: 15px;
  align-self: flex-start;
  transform: translateX(-7.5px);
  transition: transform 0.3s ease;
  margin-top: 55px;
}

.education,
.work {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 20px;
}

.resumeItem{
  align-self: flex-start;
}

.resumeItem,
.resumeItemTextDetail {
  display: flex;
  border-left: 1px solid var(--grey);
}

.resumeItemText {
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin: 40px;
  margin-left: 10px;
  margin-right: 0;
  background-color: var(--black);
  border: 2px dotted var(--grey);
  border-radius: 20px;
  padding: 10px;
  width: 100%;
  font-size: .8rem;
}

.resumeItemText>h3 {
  margin-bottom: 10px;
}

.resumeItemTextDetail {
  margin-left: 10px;
}

.resumeItemTextDetail>.dot {
  width: 10px;
  transform: translateX(-5px);
  transition: transform 0.3s ease;
  margin-top: 5px;
}

.resumeItemTextDetailText {
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin-left: 10px;
  margin-bottom: 20px;
}

.downloadLink {
  padding: 10px;
  background-color: var(--grey);
  text-align: center;
  align-items: center;
  margin-bottom: 50px;
  border-radius: 20px;
  border: 1px solid orange;
}

/* Tablet (min-width: 768px) */
@media only screen and (min-width: 768px) {}

/* Small screens (min-width: 1024px) */
@media only screen and (min-width: 1024px) {}

/* Large+ screens (min-width: 1200px) */
@media only screen and (min-width: 1200px) {}
