:root{
    --background: #e3e3e1;
    --logo:  transparent;
    --logo-height: 9rem;
    /*Set logo width as auto if .logo is <img>*/
    /*Strictly define logo width if .logo is <div>*/
    --logo-width: auto;
    --logo-margin:  7rem auto -1rem;
    --packshot: transparent;
    /*Set packshot height and width as auto if .packshot is <img>*/
    /*Strictly define packshot height and width if .packshot is <div>*/
    --packshot-height: auto;
    --packshot-width: auto;
    --packshot-margin: var(--logo-height) auto 0;
    --iframe-margin: 12rem auto 0;
    --iframe-color: none;
}
body {
    background: var(--background);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
body .container-fluid .for-a-other-link {
    margin-top: 4rem;
}
body .container-fluid .content {
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    overflow: hidden;
}
body .container-fluid .logo-container {
    margin: var(--logo-margin);
}

body .container-fluid .logo-container .logo{
    background: var(--logo);
    background-repeat: no-repeat;
    background-size: cover;
    height: var(--logo-height);
    width: var(--logo-width);
    position: fixed;
}

body .container-fluid .packshot-container {
    margin: var(--packshot-margin);
}
body .container-fluid .packshot-container .packshot {
    background: var(--packshot);
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 800px;
    max-height: 80vh;
    height: var(--packshot-height);
    width: var(--packshot-width);
    position: fixed;
}
body .container-fluid .for-a-other-link a {
    color: #000000;
    font-size: 80%;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

body .container-fluid .container-iframe {
    background-color: var(--iframe-color);
    margin: var(--iframe-margin);
    border-radius: 10px;
}

@media (max-width: 1080px) {
    body .container-fluid .container-iframe {
        margin-top: 0;
        padding-top: 0;
        width: 95%;
        float: none;
    }

    body .container-fluid .logo-container {
        padding-bottom: 0;
        width: 100%;
        padding-right: 1rem;
        margin-bottom: 20px;
        text-align: center;
    }

    body .container-fluid .logo-container .logo {
        margin: auto;
        position: static;
    }

    body .container-fluid .packshot-container {
        width: 100%;
        text-align: center;
        margin: auto;
    }

    body .container-fluid .packshot-container .packshot {
        background-size: cover;
        max-width: 80vw;
        height: auto;
        position: static;
        margin: auto;
    }
    body .container-fluid .content {
        max-width: 100%;
    }

    body .container-fluid .container-iframe {
        padding-right: inherit;
        padding-left: inherit;
    }
}