/*
Implements minimalist adjustments from the default style sheet to achieve the desired look and feel.
*/
@media (min-width: 992px) {
    section.resume-section {
        padding-left: 3rem;
        padding-right: 3rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
        min-height: 0;
    }
}

:root {
      --margin-1: 0.25rem;      
      --margin-2: 0.5rem;      
      --margin-3: 1rem;      
      --margin-4: 1.5rem;      
      --margin-5: 3rem;      
}

/* Undo all-caps settings */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .subheading {
    text-transform: none;
}
#sideNav .navbar-nav .nav-item .nav-link {
    text-transform: none;
}

em {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
    font-weight: bold;
}

strong {
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
    font-weight: bold;
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .social-icons .social-icon img {
    width: 2rem;
    height: 2rem;
    background-color: rgba(0, 0, 0, 0);
  }

section.resume-section {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    max-width: 75rem;
  }

.tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16pt;
    margin-top: 16pt;
    gap: 6pt
}
.tags * {
    font-family: Muli, -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 400;
    line-height: 24px;
    font-size: 15pt;
    border-radius: 12pt;
    padding: 2pt 8pt;
    margin: 0;

    color: var(--bs-primary);
    border: 2px solid var(--bs-primary);
    background-color: rgb(189, 93, 56, 0.1);        
}

.screenshots {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: flex-start;
    gap: 8pt;
    margin-bottom: var(--margin-4);
    /*background-color: #F8F8F8;*/
}

.contentfill {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

/*
.screenshots img {
    border: 1px solid #CCC;
    margin: 8pt;
}
*/

.screenshots > * {
    border: 1px solid #CCC;
    width: calc(50% - 4pt);
}

/*
* {
    border: 1px solid rgba(0,0,0, 0.5)
}
*/
section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    max-width: 75rem;
  }
  article {
    width: 100%;
  }
  
  @media (min-width: 992px) {
    section {
      padding-left: 3rem;
      padding-right: 3rem;
      padding-top: 5rem;
      padding-bottom: 5rem;
    }
  }

/*
Quick fix: insert margins between articles.
The ideal solution is for articles to automatically be properly spaced.
*/
.article-divider {
    margin-top: 3rem;
    margin-bottom: 3rem;
}