html {
    font-size: 10px;
    /* outline: solid 16px var(--red); */
    outline-offset: -8px;
}

body {
    font-size: 1.8rem;
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background-color: var(--brown);
    font-weight: 400;
}

h1 {
    position: relative;
    display: block;
    line-height: 1.2;
    margin: 0;
    grid-column: 1 / -1;
    font-weight: 200;
}

h2 {
    font-weight: 700;
}

h1 span {
    position: relative;
}

h1.red span:before {
    border-bottom-color: var(--white);
}

header {
    display: grid;
    padding: 2rem 4rem 6rem;
    max-width: 100rem;
    margin: auto;
    color: var(--white);
    margin-top: 8rem;
}

header:before {
    content: "";
    background-color: var(--white);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6rem;
    z-index: -1;
}

.logo {
    position: relative;
    width: 250px;
    margin-top: -6.1rem;
    margin-left: auto;
}

@media (min-width: 1000px) { 
    header {
        grid-template-columns: 7fr 2fr;
    }
    
    .logo {
        grid-column: 2;
    }

    h1 span:before {
    border-bottom: solid 3px #df2835;
}

}

.trailer {
    position: relative;
}

.videoWrapper {
    position:relative;
    padding:56.67% 0 0 0;
}

.premiere {
    margin-top: 2rem;
    grid-column: 1 / -1;
}

.premiere h1 {
    font-size: 5rem;
    grid-column: 1 / -1;
}

.excerptWrapper {
    display: flex;

}

.excerpt {
    line-height: 1.5;
    width: 100%;
    max-width: calc(100% - 10rem);
    color: var(--white);
    padding: 2rem 2rem 8rem;
    margin: auto;
    /*  */
    display: grid;
}

.claraBio {
    line-height: 1.5;
    width: calc(100% - 10rem);
    padding: 2rem;
    margin: auto;
    /*  */
    display: grid;
}

.claraGalleryWrapper {
    display: grid;
    padding: 3rem 0 6rem;
    background-color: var(--white);
}

.claraGallery {
    display: grid;
    gap: 1vw;
    grid-template-columns: repeat(12, 6vw);
    grid-template-rows: repeat(12, 6vw);
    margin: auto;
}

.claraGallery img {
    position: relative;
    width: 100%;
}

.claraGallery img:nth-of-type(1) {
    grid-column: 2 / span 4;
    grid-row: 1;
}

.claraGallery img:nth-of-type(2) {
    grid-column: 4 / span 6;
    grid-row: 5
}

.claraGallery img:nth-of-type(3) {
    grid-column: 10 / span 3;
    grid-row: 3;
}

.claraGallery img:nth-of-type(4) {
    grid-column: 1 / span 3;
    grid-row: 7;
}

.claraGallery img:nth-of-type(5) {
    grid-column: 8 / span 4;
    grid-row: 9;
}


.creditsWrapper {
    background-color: var(--brown);
    color: var(--white);
    padding: 4rem;
}

.credits {
    display: grid;
    gap: 2rem;
    margin: auto;
}



@media (min-width: 1000px) { 
    .claraBio {
        max-width: 66rem;
    }

    p {
        font-size: 1.8rem;
    }
    
    .excerpt {
        max-width: 66rem;
        grid-template-columns: repeat(10, 1fr);
    }    

    .excerpt p:nth-of-type(1) { grid-column: 4 / -1; }
    .excerpt p:nth-of-type(3) { grid-column: 3 / -2; }
    .excerpt p:nth-of-type(2) { grid-column: 2 / -3; }
    .excerpt p:nth-of-type(4) { grid-column: 1 / -4; }
    .excerpt p:nth-of-type(5) { grid-column: 4 / -1; }
    .excerpt p:nth-of-type(7) { grid-column: 3 / -2; }
    .excerpt p:nth-of-type(6) { grid-column: 2 / -3; }
    .excerpt p:nth-of-type(8) { grid-column: 1 / -4; }

    .credits {
        grid-template-columns: repeat(12, 1fr);
        max-width: 100rem;
    }
    
    .credits h1 {
        grid-column: 5;
    }
    
    .credits p { grid-column: 5 / 10; }
    
    .credits div {
        grid-column-end: span 3;
    }
    
    .credits div:nth-of-type(1) { grid-column-start: 4; }
    .credits div:nth-of-type(2) { grid-column-start: 2; }
    .credits div:nth-of-type(3) { grid-column-start: 8; }
    .credits div:nth-of-type(4) { grid-column-start: 7; }
    .credits div:nth-of-type(5) { grid-column-start: 3; }
    .credits div:nth-of-type(6) { grid-column-start: 9; justify-self: end }
    .credits div:nth-of-type(7) { grid-column-start: 2; }
    .credits div:nth-of-type(8) { grid-column-start: 5; }
    .credits div:nth-of-type(9) { grid-column-start: 4; }
    .credits div:nth-of-type(10) { grid-column-start: 9; justify-self: end}
}

.credits .label {
    font-size: 1.4rem;
    color: var(--red);
    margin-top: 2rem;
}


.impressum {
    padding: 2rem;
    display: flex;
    place-content: center;
}

.impressum a {
    color: var(--white);
}

.impressumPage {
    background-color: var(--white);
}


/* color */
.white { color: var(--white); }
.red { color: var(--red); }
/* variables */
:root {
--brown: #050505;
--red: #df2835;
--white: #f5f5f5;
}