/**instellen van de fonts en kleuren**/
:root{
    --text: #2a0a38;
    --primair: #F2D544;
    --accent: #F22294;
    --secundair: #762EA6;
    --backgrounds: #F2B84B;
    --alternate: #5D2973;
}


@font-face {
    font-family: 'Titan-one';
    src: url('../font/Super Dream.ttf');
    font-weight: normal;
}

@font-face {
    font-family: 'KosugiMaru-regular';
    src: url(../font/KosugiMaru-Regular.ttf);
    font-weight: normal;
}


/**start van de CSS om de globale stijl in te stellen**/

body {
    font-size: 14pt;
    color: var(--text);
    background: var(--backgrounds);
    font-family: 'KosugiMaru-regular';
    

}



h2, h3, h4, h5, h6 {
    font-family: 'Titan-one';
    text-transform: uppercase;
    text-shadow: 1px 1px var(--accent) , 2px 2px var(--secundair);
}

h1{
    font-family: 'Titan-one';
    text-transform: uppercase;
    font-size: 3em;
    text-shadow: 2px 3px var(--accent) , 3px 6px var(--primair) , 4px 8px var(--secundair);
}




/**instellen van de grid container**/

.main-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}




/**plaatsing van de items**/
header{
    grid-column: 1 / span 2;
    grid-row: 1;
}


.main-title{
    grid-column: 1/span 2;
    grid-row: 2;
    justify-self: center;
    display: flex;


}
.main-images{
    grid-column: 1;
    grid-row: 3;
}

.main-text{
    grid-column: 2;
    z-index: 10; 
    padding-right: 50px;
    grid-row: 3;
}


.embeded-video{
    grid-column: 1;
    grid-row: 4;
}

.links{
    grid-column: 2;
    grid-row: 4;
    padding: 0px 50px 200px 0px;
    align-self: end;
}

footer{
    margin-top: -25px;
    background: var(--text);
    color: white;
    grid-column: 1 / span 2;
    padding: 50px 100px;
    font-size: 0.7em;
    grid-row: 5;
}

.header-images img{
    max-width: 25%;
}

/**draaien van de header afbeeldingen en Z-index aanpassen**/
.header-images{
    display: flex;
    flex-wrap: nowrap;
    padding: 50px 25px;
    justify-content: space-between;
    background: linear-gradient(0deg, var(--backgrounds) 0%, rgba(242,184,75,1) 51%, rgba(255,146,206,1) 100%);
}
.header-images img:nth-child(1){
    rotate: 15deg;
}
.header-images img:nth-child(2){
    rotate: -7deg;
    z-index: 5;
}
.header-images img:nth-child(3){
    rotate: 11deg;
    z-index: 6;
}
.header-images img:nth-child(4){
    rotate: -5deg;
}


.main-title img{
    width: 120px;
    rotate: -15deg;
}

.main-title img:nth-child(3){
    width: 120px;
    rotate: 15deg;
}


.main-images img{
    max-width: 100%;
}





ul{
    list-style: none;
    padding-left: 0px;
    z-index: 99;
}



a{
    color: #F22294;
}

a:hover{
    color: #F22294;
    text-decoration: none;
}

#bobby{
    width: 200px;
    rotate: 15deg;
    z-index: 1;
}





/**stel de grid in enkele kolom voor tablets en smartphones**/
@media screen and (max-width: 960px){
    
    .main-grid-container{
        grid-template-columns: auto;
        gap: 0px;
        padding: 0px 25px;
        grid-template-rows: repeat(7, auto);
        
    }

    header{
        grid-row: 1;
    }

    .main-title{
        grid-row: 2;
    }
    .main-images{
        grid-row: 3;
    }

    .embeded-video{
        grid-row: 4;
    }
    .main-text{
        grid-row: 5;
        padding-right: 0px;
        grid-column: 1;
    }

   .links{
        grid-row: 6;
        grid-column: 1;
        padding: 0px 0px 50px 0px;
    }
    
    footer{
        grid-row: 7;
    }

    h1{
        text-align: center;
    }
    #bobby{
        display: block;
        margin: 0px auto;
    }
}
