*{
    margin: 0;
}

/* Color Scheme */
:root{
    --bg: rgb(0, 4, 49);
    --accent: rgb(0,255,246);
    --hoofd1: rgb(209,0,30);
    --hoofd2: rgb(133,0,29);

    font: 1em Arial;
    letter-spacing: 0.1em;
    line-height: 1.5em;
}

@font-face{
    font-family: rubenkop;
    src: url(../fonts/gt_proelium/GTProelium.otf);
}

/* gt proelium,  */

#body{
    height: 100%;
    background-color: black;
    background-image: url(../afbeeldingen/Ruben-foto-cut-bw.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

header{
    position: relative;
    width: 100%;
    padding-top: 140px;
    display: flex;
}

#logolink{
    margin-left: 70px;
    width: 23%;
    height:min-content;
}

#logo{
    width: 100%;
    transition: transform 0.5s;
    position: relative;
}

#logolink:hover #logo{
    transform: scale(0.9);
}

#spacer-hor{
    width: 40%;
}

nav{
    width: min-content;
}

li{
    width: min-content; 
    list-style-type: none;
    padding: 7px 0px;
    transition: transform 0.5s;
}

.icon{
    width: 50px;
}

li a{
    display: flex;
    align-items: center;
    color: var(--hoofd2);
    font-family: rubenkop;
    letter-spacing: 0.2em;
    text-decoration: none;
    font-size: 2.2em;
    transition: color 0.3s ease;
}

li a p{
    width: 100%;
    margin-left: 7px;
}

li a:hover{
    color: var(--hoofd1);
}

li:has(a:hover) {
    transform: scale(1.5);
}

.lijn{
    height: 1px;
    background-color: var(--hoofd2);
    width: 60%;
    margin-left: 15px;;
}

#gradient{
    height: 1000px;
    background: linear-gradient(195deg, rgba(0,0,0,0) 30%, rgba(130, 0, 0, 0.5) 45%, rgba(109,40,69,0.5) 48%, rgba(32,104,120,0.7) 50%, rgba(102,32,65,0.5058474073223039) 57%, rgba(94,0,0,0.6) 65%, rgba(0,0,0,0) 70%);
}

#tekstblok{
    background: rgba(0,0,0,0.3);
    color: white;
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
}

#tekstblok p{
    width: 80%;
    padding-inline-start: 10%;
}

footer{
    color: white;
    padding: 8px 0px;
    font-size: .8em;
    background-color: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

footer img{
    height: 30px;
    width: 30px;
    padding-left: 6px;
}

/*      responsiviteit      */

@media screen and (max-width: 1100px){
    #spacer-hor{
        width: 25%;
    }
}

@media screen and (max-width: 800px){
    li a{
        font-size: 1.5em;
    }
}

@media only screen and (max-width: 600px) {


    header{
        padding-top: 55px;
    }

    #logolink{
        margin-left: 40px;
        width: 33%;
    }

    #spacer-hor {
        width: 10%;
    }

    #gradient {
        height: 500px;
    }
}

@media screen and (max-width: 450px){
    #logo{
        width: 125px;
    }

    #logolink{
        margin-left: 5px;
    }
}

@media screen and (max-width: 400px){
    nav{
        position: absolute;
        top: 150px;
    }

    nav li a p{
        color: white;
    }
}