:root {
    --background: url('../images/thumbnail_1.png'), url('../images/thumbnail_2.png'), url('../images/background.png');
    --logo: transparent;
    --logo-height: auto;
    /*Set logo width as auto if .logo is <img>*/
    /*Strictly define logo width if .logo is <div>*/
    --logo-width: 50%;
    --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: 2rem auto 0;
    --iframe-color: none;
}

body {
    background: var(--background);
    background-repeat: no-repeat;
    background-size: 25%, 25%, cover;
    background-attachment: fixed;
    background-position: center left, center right;
}

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 {
    text-align: center;
    margin: 0 auto;
    width: 50%;
    position: relative;
}

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

body .container-fluid .packshot-container {
    margin: var(--packshot-margin);
    display: none;
}

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: #ffffff;
    font-size: 80%;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

body .container-fluid .text-container {
    text-align: center;
}

body .container-fluid .text-container #main-text-box {
    font-size: 9rem;
    line-height: 8rem;
}

body .container-fluid .text-container #main-text-box span {
    font-weight: bold;
}

body .container-fluid .text-container #secondary-text-box {
    font-size: 3rem;
    line-height: 5rem;
}

body .container-fluid .text-container .text-circle{
    height: auto;
    width: 80%;
    max-width: 40rem;
}

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


@media (max-width: 1080px) {
    body {
        background: url('../images/Mobile-Background.jpg');
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: top;

    }
    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 .text-container #main-text-box {
        font-size: 7rem;
        line-height: 6rem;
    }

    body .container-fluid .text-container #secondary-text-box {
        font-size: 2rem;
        line-height: 2rem;
    }


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

    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;
    }
}

@media (max-width: 550px) {
    body .container-fluid .text-container #main-text-box {
        font-size: 5rem;
        line-height: 5rem;
    }
}