
@font-face {
    font-family: 'Trajan Pro';
    src: url('fonts/TrajanPro-Bold.woff2') format('woff2'),
        url('fonts/TrajanPro-Bold.woff') format('woff'),
        url('fonts/TrajanPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Crimson Pro';
    src: url('fonts/CrimsonPro-Regular.woff2') format('woff2'),
        url('fonts/CrimsonPro-Regular.woff') format('woff'),
        url('fonts/CrimsonPro-Regular.ttf') format('truetype'),;
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Crimson Pro';
    src: url('fonts/CrimsonPro-Italic.woff2') format('woff2'),
        url('fonts/CrimsonPro-Italic.woff') format('woff'),
        url('fonts/CrimsonPro-Italic.ttf') format('truetype'),;
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Crimson Pro';
    src: url('fonts/CrimsonPro-Italic.woff2') format('woff2'),
        url('fonts/CrimsonPro-Italic.woff') format('woff'),
        url('fonts/CrimsonPro-Italic.ttf') format('truetype'),;
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

html, body {
    font-family: "Crimson Pro", serif;
    background-color: #F9F3E0;
    background-image: url(../images/background.jpg);
    background-repeat: repeat;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Trajan Pro", serif;
    font-weight: 700;
    font-style: normal;
    color: #5F2787;
}

.navbar-brand {
    font-family: "Trajan Pro", serif;
}

p em {
    font-size: 1.05rem;
}

.entry {
    display: grid;
    grid-template-columns: auto max-content;
    grid-template-areas: "title composer";
    align-items: end;
    gap: 0 .25rem;
}

.title {
    grid-area: title;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.title::after {
    position: absolute;
    padding-left: .25ch;
    content: " . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "
        ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "
        ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "
        ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "
        ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ";
    text-align: right;
}

.composer {
    grid-area: composer;
    font-family: 'Crimson Pro', serif;
    font-weight: normal;
}

.divider {
    display: flex;
    height: 60px;
}

.divider .ctr {
    flex: 15 1 auto;
    position: relative;
    overflow: hidden;
    background-image: url(../images/divider.png);
    background-size: 1868px 60px;
    background-repeat: no-repeat;
    background-position: center center;
}

.divider .cap-left {
    position: relative;
    overflow: hidden;
}

.divider .cap-right {
    position: relative;
    overflow: hidden;
}

hr {
  border-top: 2px solid #5F2787;
  height: 2px;
  width: 100%;
  margin: 30px auto;
  background: #5F2787;
  opacity: 1;
}

#content * a:link, #content * a:visited {
    color: #5F2787;
    text-decoration: none;
    font-weight: bold;
}

#content * a:hover {
    text-decoration: underline;
}

.text-purple {
    color: #5F2787;
}

.btn-purple,
.btn-purple:hover,
.btn-purple:active,
.btn-purple:visited,
.btn-purple:focus {
    background-color: #5F2787;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: normal !important;
    outline: 0;
}

#content * .columns-5,
#content * .columns-6 {
    column-count: 2;
    column-fill: balance;
}

@media only screen and (min-width: 767px) {
    #content * .columns-5 {
        column-count: 4;
        column-fill: balance;
    }

    #content * .columns-6 {
        column-count: 4;
        column-fill: balance;
    }
}

@media only screen and (min-width: 1023px) {
    #content * .columns-5 {
        column-count: 5;
        column-fill: balance;
    }

    #content * .columns-6 {
        column-count: 6;
        column-fill: balance;
    }
}

.section-heading {
    display: grid;
    grid-template-columns: auto max-content;
    grid-template-areas: "heading end";
    align-items: end;
    gap: 0 .25rem;
}

.heading {
    grid-area: heading;
    position: relative;
    overflow: hidden;
}

.heading::after {
    position: absolute;
    padding-left: .75ch;
    content: "————————————————————————————————————————————————————————————————————"
    "————————————————————————————————————————————————————————————————————"
    "————————————————————————————————————————————————————————————————————"
    "————————————————————————————————————————————————————————————————————"
    "————————————————————————————————————————————————————————————————————";
    text-align: right;
}

.end {
    grid-area: end;
}