:root {
  --navy: #0a192f;
  --light-navy: #112240;
  --lightest-navy: #233554;
  --slate: #ccd6f6;
  --white:#e6f1ff;
  --green: #34d399;
}

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: "Lato", sans-serif;
}

.heading::after {
  content: "";
  display: block;
  position: relative;
  top: -12px;
  width: 80%;
  height: 2px;
  margin-top: 12px;
  margin-left: 0px;
  background-color: var(--lightest-navy);
}

@media (min-width: 768px) {
  .heading::after {
    margin-top: 0px;
    margin-left: 300px;
  }
}

.profile-img {
  border-radius: 1rem;
  max-height: 400px;
  border: 2px solid var(--green);
}

.experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-list li::before {
  content: "▹";
  position: absolute;
  left: 0px;
  color: var(--green);
}

/* UTILITIES */
.color-primary {
  color: var(--green);
}

.color-secondary {
  color: var(--slate);
}

.bg-light-navy {
  background-color: var(--light-navy);
}
