/* Fiksert bakgrunnsbilde */
.background-fixed {
    background-image: url('/8/gfx/UR_Laila_1500x700_grey.png');
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    z-index: -2; /* Bakgrunnsbilde er bak alt annet innhold */
}

/* Skrollbart bakgrunnsbilde */
.background-scroll {
    background-image: url('/8/gfx/reel_7.png');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Gjør at høyden følger innholdet */
    min-height: 100vh;
    background-size: auto;
    background-repeat: repeat;
    background-attachment: scroll;
    z-index: -1;
}
.content {
    position: relative;
    z-index: 1; /* Sørger for at innholdet vises over bakgrunnen */
}

div.filter {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95); /* Gjør bakgrunnen til artikkelboksene litt gjennomsiktig */
    /* overflow-x: scroll; */
}
#contentContainer {
    -webkit-text-size-adjust: 100%;
    color: #333;
    font-family: Verdana,sans-serif;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
    hyphens: auto;
    box-sizing: inherit;
    display: block;
    padding: 0.01em 16px;
    margin-top: 5em;
    min-height: 80vh;
    width: 50vw;
    margin-left: 25vw;
    max-width: 850px;
    background-color: rgba(255, 255, 255, 0.8);
}
