
.resumeLinks    {
    color: #778da9;
}
.resumeLinks:hover  {
    color: #0d1b2a;
}
/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: #e0e1dd;
    color: #415a77;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: 0;
    text-align: left;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
  }

  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
    background-color: #778da9;
    color: #e0e1dd;
  }

  /* Style the collapsible content. Note: hidden by default */
.resume-content {
    padding-left: 75px;
    padding-bottom: 25px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
    line-height: 3rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    list-style: none;
    text-indent: -40px;
  }

  .resumeParagraph  {
    text-indent: 0;
  }
/******************************* Media Queries *******************************/

@media screen and (min-width:1080px) {
  .collapsible {
    font-size: 1.5rem;
  }
}