html {
    font-size: 1.3vw;
    line-height: 1.5;

}

body {
    margin: 0;
}

img {
   display: block;
   margin-left: auto;
   margin-right: auto;

}

header {
    background-color: rgb(245 240 240);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container voor de afbeelding */
.header-content {
    text-align: center;
}

#main {
    display: flex;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    
}

#services-title {
    color: rgb(72, 67, 67);
    text-align: center;
}

#intro {
    width: 60%;
    padding: 2%;
    box-sizing: border-box; /* Zorgt ervoor dat padding/margin binnen de div valt */
    border-radius: 25px;
    display: flex;
    flex-direction: row;

    h2 {
        color: rgb(72, 67, 67);
        text-align: center;
    }

    img {
        width: 80%;
        height: 80%;
    }
    
}

.services {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.service-list {
    list-style-type: none;
}

.service-item {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #ecf0f1;
    border-left: 5px solid #2c3e50;
    border-radius: 4px;
}

.service-item h2 {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 0.8rem;
    color: #7f8c8d;
}


ul {
    padding: 0;
    margin: 0;
    list-style-position: inside;
    list-style-type: circle;
}

#contact {
    margin-top: 2%;
    text-align: center;

    h2 {
        color: rgb(72, 67, 67);
        text-align: center;
    }
    margin-bottom: 20px;
}
/* 
@media only screen and (max-height: 460px) {
    img {
        height: auto;
        width: 30%;
    }
  }
*/

#customers {
    width: 100%;
    overflow: hidden;
    margin: 50px 0;
    h2 {
        color: rgb(72, 67, 67);
        text-align: center;
    }
}


/* Logo's van de klanten */
.logos {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   padding: 5%;

}

.logos img {
    height: auto;
    flex: 1 1 0; /* Allow images to grow and shrink evenly */
    max-width: 33.33%;
   
}

footer {
    background-color: rgb(245 240 240);
    width: 100%;
    height: 5%;
    font-size: 0.8vw;
    text-align: center;
    padding: 0 0 0 0;
}

@media only screen and (max-width: 768px) {

    html {
        font-size: 4vw;
        line-height: 1.5;
    }

    /* h2 {
        font-size: 2vw;
    } */

    #main {
        flex-direction: column;
        align-items: center;
    }

    #intro {
        margin-bottom: 2%;
    }

    #intro, #stack {
        padding: 5%;
        width: 100%;
    }

    img {
        height: auto;
        width: 80%;
    }

    #contact {
        margin-top: 10%;
    }

    .logos {
        flex-direction: column;
    }

    footer {
       
        font-size: 1.5vw;
      
    }

}