@counter-style custom-decimal {
    system: numeric;
    symbols: '\30' '\31' '\32' '\33' '\34' '\35' '\36' '\37' '\38' '\39';
    suffix: " ";
    prefix: "";
}

.font-beau-rivage {
    font-family: "Beau Rivage", serif;
    font-weight: 400;
    font-style: normal;
}

.pt-serif-regular {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: normal;
}
  
.pt-serif-bold {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-style: normal;
}
  
.pt-serif-regular-italic {
    font-family: "PT Serif", serif;
    font-weight: 400;
    font-style: italic;
}
  
.pt-serif-bold-italic {
    font-family: "PT Serif", serif;
    font-weight: 700;
    font-style: italic;
}

body {
    margin: 30px 0 0 0;
    background-color: white;
}

.title h1 {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    font-size: 96px;
}

.album-picker {
    margin: 50px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 900px;
}

.album-picker article {
    margin: 0 10px;
    padding: 20px;
    width: 160px;
    height: 275px;
    transition: scale 0.1s;
    text-align: center;
}

.album-picker article:hover {
    scale: 1.2;
}

.album-picker img {
    height: 150px;
    width: 150px;
    object-fit: contain;
}

.album-picker article a {
    display: block;
    font-size: 32px;
    color: black;
    text-decoration: none;
}

.interview {
    /*border: 1px solid black;*/
    border-radius: 10px;
    /*background-color: #4E0001;*/
    /*background-color: rgba(78, 0, 1, 0.9);*/
    /*color: white;(*/
    padding: 40px;
    /*box-sizing: border-box;*/
    width: 80%;
    margin: 0 auto;
    max-width: 940px;
    position: relative;
}

.interview article {
    margin: 40px;
}

@media (max-width: 650px) {
    .interview article {
        margin: 20px 5px;
    }
}

.interview p {
    margin: 4px 0;
}

.interview img.topleft {
    float: left;
    height: 150px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.interview img.topright {
    float: right;
    height: 150px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.interview img.bottomleft {
    float: left;
    height: 150px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.interview img.bottomright {
    float: right;
    height: 150px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.margin-box {
    margin: 10px;
}

footer {
    height: 50px;
}

hr {
    margin: 50px 0 0 0;
    height: 55px;
    background-image: url("img/horizontal_rule_roses.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: center;
    border: none;
}

hr.small {
    margin-top: 25px;
    height: 25px;
    background-image: url("img/horizontal_gothic_slim.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: center;
    border: none;
}

footer p {
    display: block;
    padding: 10px 0 30px 0;
    text-align: center;
}

.roses {
    margin-top: 40px;
    height: 75px;
    background-image: url("img/roses_bottom.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: center;
    border: none;
}

.albums {
    margin: 0 auto;
    width: 50%;
    /*border: 1px solid red;*/
}

.albums article {
    margin: 10px 0;
    /*border: 1px solid red;*/
}

.albums article .download {
    font-size: 1.5rem;
}

.albums img {
    width: 150px;
}

.albums h2 {
    font-size: 64px;
    margin: 20px 0;
}

.albums h2 a {
    text-decoration: none;
    color: black;
}

.albums a {
    color: black;
    text-decoration: none;
}

.albums a:hover {
    text-decoration: underline;
}

.albums h2 a:hover {
    text-decoration: none;
}

.albums h2 a:hover::after {
    content: " #";
}

.albums ol {
    list-style: custom-decimal;
    list-style-position: outside;
    margin: 0;
    padding: 0px 25px;
}

.albums li {
    padding: 0 15px;
}