
body, html {
    margin: 0;
    padding: 0;
    background: black;
    overflow: hidden;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-container {
    width: 90vw;
    max-width: 600px;
    aspect-ratio: 1/1; /* Sørger for kvadratisk forhold */
    position: relative;
    background: url('fitzyjg.png') no-repeat center center;
    background-size: contain;
}

.clickable {
    width: 15%;
    aspect-ratio: 1/1;
    position: absolute;
    z-index: 3;
    background-color: transparent;
    display: block;
    touch-action: manipulation;
}

.clickable.twitch {
    left: 54%;
    bottom: 15%;
}

.clickable.merch {
    left: 15%;
    bottom: 16%;
    transform: translateX(-50%);
}

.clickable.tiktok {
    left: 77%;
    bottom: 15%;
}

.clickable.facebook {
    left: 38%;
    bottom: 15%;
    transform: translateX(-50%);
}