/* Background / image */

.albumPageBackground {
    padding-bottom: 50px;
}

.albumPageBackground>img.banner {
    width: 100%;
}

.albumPageBackground>img.banner.small {
    display: none;
}

/* Title */

.albumPageTitle {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 25px 10px 5px 10px;
}

.albumPageTitle>p {
    font-size: 40px;
    font-family: "MainMedium", sans-serif;
}

/* Body */

.albumPageBody {
    max-width: 800px;
    margin: auto;
}

.albumPageBody>p {
    font-size: 20px;
}

.contained {
    width: 500px;
    max-width: calc(100% - 8px);
    margin-top: 30px;
}

/* Parallax background pres */

.parallaxBackgroundPresentation {
    height: calc(100vh - 61px);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: space-between;
}
.parallaxBackgroundPresentation.du { background-image: url("../img/du_16_9_no_text.jpg"); }
.parallaxBackgroundPresentation.alteree { background-image: url("../img/alteree_full_size.jpg"); }
.parallaxBackgroundPresentation.dreamsOfEmancipation { background-image: url("../img/emancipation_final_full_smol.jpg"); }
.parallaxBackgroundPresentation.stranded { background-image: url("../resources/img/stranded_ban.jpg"); }
.parallaxBackgroundPresentation>div.infos>h1 { margin-bottom: 5px; font-size: 24px; }
.parallaxBackgroundPresentation>div.infos>p { margin-bottom: 30px; }
.parallaxBackgroundPresentation>div.infos {
    margin: auto 100px auto auto;
    background-color: rgba(0,0,0,0.8);
    padding: 50px;
    max-width: 400px;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}
.parallaxBackgroundPresentation>div.infos>.linksContainer a, .buttonLinksType>.linksContainer a {
    background-color: rgba(255,255,255,0.2);
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
    margin: 11px 0;
    padding-left: 12px;
    padding-right: 12px;
    display: flex; flex-direction: row; align-items: center; justify-content: flex-start;
}
.parallaxBackgroundPresentation>div.infos>.linksContainer a:hover, .buttonLinksType>.linksContainer a:hover {
    background-color: rgba(255,255,255,0.4);
}
.parallaxBackgroundPresentation>div.infos>.furtherInfos { margin-top: 24px; }
.parallaxBackgroundPresentation>div.infos>.furtherInfos>p, .parallaxBackgroundPresentation>div.infos>.furtherInfos>p>a { font-size: 14px; }
.parallaxBackgroundPresentation>div.infos>.furtherInfos>p>a {
    color: var(--primary-color-light);
    text-decoration: underline;
}
.autoScroll {
    margin: 0 auto 0 auto;
    background-color: rgba(0,0,0,0.8);
    border-color: white;
    height: 50px;
    display: flex; flex-direction: row; justify-content: center; align-items: center;
    transition: all 0.4s;
    width: 100%;
}
.autoScroll:hover { cursor: pointer; background-color: black; }
.autoScroll>p { color: white; }

.smoothIt, .smoothIt>a { font-size: 17px; }

p.small, p.small>a { font-size: 15px; }

.simpleAlbPres {
    height: 100vh;
    display: flex; flex-direction: row; justify-content: center; align-items: center;

}
.simpleAlbPres h1 {
    font-size: 24px;
}
.strandedColor {
    color: #e7bfa8;
}

@media all AND (max-width: 1023px) {

    .parallaxBackgroundPresentation.du { background-image: url("../resources/img/du_album_cover_no_text.jpg"); }
    .parallaxBackgroundPresentation {
        align-content: center;
        justify-content: center;
    }
    .parallaxBackgroundPresentation>div.infos {
        width: calc(100% - 46px);
        max-width: none;
        padding: 15px;
        margin: auto;
    }
    .parallaxBackgroundPresentation>div.infos>p { font-size: 16px; }
    .desktopOnly { display: none; }
    .autoScroll { display: none; }

}

/* ------------------------ */

@media all AND (max-width: 1023px) {

    .albumPageBody {
        padding-left: 12px;
        padding-right: 12px;
    }

    .albumPageBackground>img.banner.small {
        display: block;
    }

    .albumPageBackground>img.banner.big {
        display: none;
    }

    .simpleAlbPres>.itemPresentation .titleAndAccess>div>p {
        text-align: left;
    }
    .simpleAlbPres {
        margin-top: 40px;
        margin-bottom: 20px;
    }

}