html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

body {
    background: #2a2a2e;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}


.resume-outer {
    display: grid;
    width: 8.5in;
    height: 11in;
    background: lavender;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 2.55in calc(8.5in - 2.55in);
    grid-template-rows: 1.65in calc(11in - 1.65in);
}

.resume-intro {
    background: rgb(147, 112, 219, 0.4);
    padding-left: 0.5em;
    padding-top: 0.25em;
}

.resume-summary {
    background: rgb(147, 112, 219, 0.2);
    padding-left: 0.5em;
    padding-top: 1em;
    font-size: smaller;
}

.resume-skills {
    background: rgb(147, 112, 219, 0.2);
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding-top: 0.25em;
}

.resume-main {
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding-top: 0.25em;
}

.resume-intro p {
    margin-top: 0;
    margin-bottom: 0;
}

.resume-skills p {
    margin-top: 0;
    margin-bottom: 0;
}

.resume-main p {
    margin-top: 0;
    margin-bottom: 0;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-top: -0.25em;
}

.resume-name {
    font-size: x-large;
}

.pronouns {
    font-size: small;
    opacity: 0.75;
}

.location {
    /* TODO */
    font-size: smaller;
}

.occupation {
    font-size: small;
    font-style: italic;
}

.email {
    font-size: smaller;
}
.website {
    font-size: smaller;
}

a {
    color: black;
}

.section-header {
    border-bottom: 0.1em solid mediumpurple;
    width: 100%;
}

.link-value {
    font-size: smaller;
    opacity: 0.75;
}

.interest-title {
    text-decoration: underline;
    font-style: italic;
}

.interest-value {
    font-size: smaller;
    opacity: 0.75;
}

.skill-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.skill-yes {
    color: black;
}

.skill-no {
    color: black;
    opacity: 0.25;
}

.skill-other {
    opacity: 0.75;
    font-size: small;
}

.experience-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.experience-link {
    font-size: small;
}

.experience-bullet {
    font-size: small;
}

.experience-subtitle {
    font-size: smaller;
}
.experience-location {
    font-size: smaller;
}

.resume-main ul {
    margin: 0;
}

@media print {
    @page {
        size: letter portrait;
        margin: 0 !important;
    }
    body {
        align-items: start;
        justify-content: left;
    }
    .print-hide {
        display: none !important;
    }
    .container {
        margin: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        width: 8.5in !important;
    }
    .resume-outer {
        margin: 0 !important;
    }
}