*{box-sizing: border-box;}


    body{
    background-color:#ffffff;
    font-family:Verdana;
    }

    nav{
        width: 100%;
        height: 5%;
        background-color:#D34F42;
        position: sticky;
    }
    nav li {
        float: right;
        margin-top: 2.4%;
    }

    nav ul{
        list-style: none;
        font-size: large;
    }

    nav li:nth-child(4) a {
        color: #E7D74B;
    }
    
    nav a{
        text-decoration: none;
        font-size:25px ;
        font-weight: bolder;
        color:#4FB9AB;
        padding: 10px;
        transition: 0.5s;
    }

    a:link {
        background-color: #D34F42;
        border: 5px solid #D34F42;
        border-radius: 20px;
      }
      
      a:visited {
        background-color: #D34F42;
        border: 5px solid #D34F42;
        border-radius: 20px;
      }
      
      a:hover {
        background-color: #b4443a;
        border: 5px solid #b4443a;
        border-radius: 20px;
      }
      
      a:active {
        background-color: #FF8D01;
        border: 5px solid #FF8D01;
        border-radius: 20px;
      } 

    nav img{
        width: 11.0%;
        margin-left: 1.8%;
    }

    

    #hoofd{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr ;
        gap: 10px;
    }

    main{
        grid-area: 1 / 1 / 3 /5;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        gap: 10px;
    }

    main img{
        grid-area: 1 / 1 / 3 /4;
        border: 8px solid #4FB9AB;
        width: 100%;
        margin-top: 9.2%;
        margin-left: 13.2%;
        width: 65%;
    }

    main p{
        grid-area: 1 / 3 / 3 /5;
        background-color: #4FB9AB;
        border: 5px solid #4FB9AB;
        border-radius: 20px;
        padding: 5%;
        margin-top: 24.2%;
        margin-right: 3.6%;
        margin-bottom: 22.8%;
    }

    article{
        grid-area: 1 / 5 / 2 /8;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr ;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 10px;
        padding-left: 10.6%;
        padding-top: 4%;
    }

    article :nth-child(1){
        grid-area:1 / 1 / 3 /2;
        width:60%;
    }

    article :nth-child(2){
        grid-area:1 / 2 / 2 /3;
    }

    article :nth-child(3){
        grid-area:2 / 1 / 3 /2;
        width:60%;
    }

    article :nth-child(4){
        grid-area:2 / 2 / 3 /4;
    }

    article :nth-child(5){
        grid-area:3 / 1 / 4 /2;
        width:60%;
    }

    article :nth-child(6){
        grid-area:3 / 2 / 4 /4;
    }

    #hoofd section{
        grid-area:2 / 1 / 3 /8;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-rows: 80px 1fr 1fr ;
        gap: 10px;
    }

    section h1{
        color: #FF8D01;
        font-weight: bolder;
        background-color:#FED329;
        border: 5px solid #FED329;
        border-radius: 20px;
        text-align: center;
    }

    section :nth-child(2){
        grid-area:2 / 2 / 5 /3;
        border: 5px solid #F02C77;
        border-radius: 20px;
    }

    section :nth-child(3){
        grid-area:2 / 4 / 5 /5;
        border: 5px solid #FED329;
        border-radius: 20px;
        width: 98.2%;
    }

    section :nth-child(4){
        grid-area:2 / 6 / 5 /7;
        border: 5px solid #FF8D01;
        border-radius: 20px;
        width: 127.6%;
    }

    footer{
        background-color: #D34F42;
        padding: 20px;
        overflow: hidden;
        width:100%;
        position: absolute;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 10px 40px;
        gap: 10px;
    }

    footer :nth-child(1){
        grid-area: 1/1/2/2;
    }

    footer :nth-child(2){
        grid-area: 1/3/2/4;
        text-align: right;
    }

    footer :nth-child(3){
        grid-area: 2/3/3/4;
        text-align: right;
    }