/* Resume Card */
#main-content {
  max-width: 850px;
  margin: 0 auto;
  background-color: rgba(72, 70, 70, 0.8);
  padding: 36px 60px;
  border-radius: 15px;
  line-height: 1.5;
}
#personal-info {
  text-align: center;
}
.name {
  font-size: 24px;
}
.phone {
  display: none;
}
.resume-titles {
  font-size: 1.2rem;
  color: #d0beab;
  margin-top: 35px;
  margin-bottom: 10px;
  border-bottom: 1px solid #d0beab;
  padding-bottom: 4px;
  text-align: left;
}
h3 {
  color: #d0beab;
}
/* lists */
ul {
  margin-left: 20px;
  margin-top: 6px;
}

#main-content li {
  margin-bottom: 6px;
}
/* dates */
#experience p,
#education p {
  font-style: italic;
  margin-top: 14px;
}

/* linkedin */
.linkedin:link {
  color: #d0beab;
}

.linkedin:visited {
  color: rgb(150, 150, 150);
}

.linkedin:hover,
.linkedin:active {
  color: rgb(78, 135, 192);
}

/* print */
@media print {
  #main-content {
    padding: 5px 60px 0 60px;
    font-size: 12px;
  }
  #index {
    display: none;
  }
  footer {
    display: none;
  }
  .title {
    display: none;
  }
  #personal-info {
    color: black;
  }
  .phone {
    display: contents;
  }
  .linkedin {
    display: none;
  }
  .resume-titles,
  #purpose,
  #experience,
  #education,
  #skills,
  #certifications,
  #strengths {
    color: black;
  }
  h3 {
    color: black;
  }
}
