/***************************************************************
ALL
***************************************************************/

:root {}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100vh;
    position: relative;
    font-family: futura-pt, sans-serif;
    font-weight: 700;
    font-style: normal;
    background-color: black;
}



img {
    max-width: 100%;
    width: 100%;
}

.container {
    padding-left: 5%;
    padding-right: 5%;
    max-width: 62.5rem;
    margin-left: auto;
    margin-right: auto;
}

.container--xl {
    max-width: 100rem;
}

.container--lg {
    max-width: 84rem;
}

.container--md {
    max-width: 68rem;
}

.container--sm {
    max-width: 52rem;
}

.inner-margin {
    margin-top: 10%;
    margin-bottom: 10%;
}

.background {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

a {
    text-decoration: none;
    color: #212121;
}

.button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: black;
    border: solid 0.45rem white;
}

/***************************************************************
HOME
***************************************************************/


.album-artwork {
    position: relative;
    padding-top: 100%;
}

.album-artwork img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.album-promotion {}

.album-promotion__row {
    display: flex;
}

.album-promotion__row--margin {
    display: flex;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-top: 0.5rem;
}

.album-promotion__art {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0px 6px 8px rgb(0 0 0 / 50%);
    object-position: left;
}

.sticker__container {

    overflow: auto;

    height: 100%;

    width: 100%;

    position: relative;

    overflow: hidden;
}

.sticker__image {
    position: absolute;
    bottom: 1%;
    right: 1%;
    height: 23%;
    width: 23%;
    object-fit: cover;
}

.album-promotion__art--band {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    box-shadow: 0px 6px 8px rgb(0 0 0 / 50%);
}

.album-promotion__art--vinyl {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    box-shadow: 0px 6px 8px rgb(0 0 0 / 50%);
}

.album-promotion__col {
    width: 50%;
    padding: 0.5rem;
}

.album-promotion-col__wrapper {
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

@media (min-width: 48rem) {
    .album-promotion__row--margin {
        margin-left: -1rem;
        margin-right: -1rem;
        margin-top: 1rem;
    }

    .album-promotion__col {
        padding: 1rem;
    }
}

@media (min-width: 80rem) {
    .album-promotion {
        margin-top: 2rem;
    }

    .album-promotion__row--margin {
        margin-left: -1rem;
        margin-right: -1rem;
        margin-top: 1rem;
    }

    .album-promotion__col {
        padding: 1rem;
    }
}

/***************************************************************
ALBUM LINKS
***************************************************************/
.album-links {
    text-transform: uppercase;
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 2.25rem);
}

.album-links__row {
    margin: 2rem 0;
}

.album-links__col {}

.album-links__icon {
    color: white;
}

.album-links__wrapper {}

@media (min-width: 48rem) {
    .album-links {}

    .album-links__col {}

    .album-links__icon {}

    .album-links__wrapper {}
}

@media (min-width: 80rem) {
    .album-links {}

    .album-links__row {}

    .album-links__col {}

    .album-links__icon {}

    .album-links__wrapper {}
}

/***************************************************************
END OF FILE
***************************************************************/