:root {
    --background: linear-gradient(to bottom, #FAB900, #FFDC00);
    --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 0;
    --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: 16rem auto 0;
    --iframe-color: none;
}

@font-face {
  font-family: "Titan One";
  src: url("https://static.scoupy.nl/chocomel/fonts/TitanOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

html
{
    overscroll-behavior: none;
}

body {
    background: var(--background);
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: Arial, Helvetica, sans-serif;
    color: #673918;
}

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;
    left: -5px;
}

#logo_desktop {
    display: block;
}

#logo_mobile {
    display: none;
}

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 .packshot-container .packshot .packshot-text {
    font-family: "Titan One", cursive;
    position: static;
    color: #673918;
    text-align: center;
    width: 100%;
    line-height: 0.8;
}

body .container-fluid .packshot-container .packshot .packshot-text.wiggle {
    animation: gentleWiggle 1s ease-in-out;
}

body .container-fluid .packshot-container .packshot .packshot-image {
    position: fixed;
    bottom: 0;
}

body .container-fluid .packshot-container .packshot .packshot-image img{
    max-width: 80vw;
    height: 60vh; 

}

@keyframes gentleWiggle {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    15% {
        transform: rotate(-1deg) scale(1.01);
    }
    30% {
        transform: rotate(1deg) scale(1.02);
    }
    45% {
        transform: rotate(-0.5deg) scale(1.01);
    }
    60% {
        transform: rotate(0.5deg) scale(1);
    }
    75% {
        transform: rotate(-0.3deg) scale(1);
    }
    90% {
        transform: rotate(0.2deg) scale(1);
    }
}

body .container-fluid .packshot-container .packshot .packshot-text .letter {
    display: inline-block;
    opacity: 0;
    transform: scale(0);
    animation: cartoonPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

body .container-fluid .packshot-container .packshot .packshot-text .space {
    display: inline-block;
    width: 0.3em;
}

@keyframes cartoonPop {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
    70% {
        transform: scale(0.9);
    }
    85% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

body .container-fluid .packshot-container .packshot .packshot-text.first-row {
    font-size: clamp(4rem, 10vw, 20rem);
    white-space: nowrap;
}

body .container-fluid .packshot-container .packshot .packshot-text.second-row {
    font-size: clamp(5rem, 15vw, 26rem);
    white-space: nowrap;
}

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: -1rem;
        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 {
        left: inherit;
        right: -15px;
        height: 6rem;
    }

    #logo_desktop {
        display: none;
    }

    #logo_mobile {
        display: block;
    }

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

    body .container-fluid .packshot-container .packshot {
        background-size: cover;
        max-width: 85vw;
        height: auto;
        position: static;
        margin: auto;
    }
        body .container-fluid .packshot-container .packshot .packshot-image {
        background-size: cover;
        max-width: 85vw;
        height: auto;
        position: static;
        margin: auto;
    }
    body .container-fluid .packshot-container .packshot .packshot-image img {
        max-width: 85vw;
        height: auto;
    }
    
    body .container-fluid .packshot-container .packshot .packshot-text.first-row {
        font-size: clamp(3rem, 16vw, 12rem);
    }
    
    body .container-fluid .packshot-container .packshot .packshot-text.second-row {
        font-size: clamp(4rem, 21vw, 15rem);
    }

    body .container-fluid .content {
        max-width: 100%;
    }

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