
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #1f1f1f;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    
}

nav {
    background-color: #17191D;
    height: 80px;
    width: 100%;
    border-bottom: 3px solid #36312d;
    text-align: left;
  
  }
  
  nav a {
    color: white;
    text-decoration: none; /* Haalt de lijn onder de links weg*/
    margin: 20px;
    padding: 10px;
    display: inline-block; /* Hierdoor blijft het in het midden ig*/
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  nav p {
    color: white;
    font-size: 20px;
    font-style: bold;
    margin: 20px;
    display: inline-block; /* Hierdoor blijft het in het midden ig*/
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  nav a:hover {
    background-color: #575757;
    border-radius: 5px;  /* Dit is de ronde rand van de hover*/
  }

  .hero {
    background-color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 680px;
    padding: 0 240px;
}

.hero h1 {
    font-size: 64px;
    font-weight: bold;
}

.hero h1 span {
    color: #14C03C;
}

.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    margin-right: 10px;
}

.btn.green {
    background-color: #14C03C;
    color: white;
}

.btn.grey {
    background-color: #333;
    color: white;
}

.profile-image img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
}

.scroll-down {
    font-size: 48px;
    color: white;
    position: absolute;
    bottom: 50px;
    left: 49%;
   
}

/*Projecten pagina*/

header h1{
    margin-top: 40px;

}

.pro_header {
    text-align: center;
    padding: 20px;
}

.pro h1 {
    font-size: 20px;
    color: white;
}

.highlight {
    color: #14C03C;
}

.filter-buttons {
    margin: 20px 0;
}

.filter-buttons button {
    background-color: #333;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
}

.projects {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.project {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    background-color: #2c2c2c;
    margin: 20px;
    border-radius: 10px;
    padding: 20px;
    width: 60%;
}

.project img {
    border-radius: 10px;
    width: 300px;
    height: 250px;
    object-fit: cover;
}

.project-info {
    max-width: 70%;
    text-align: left;
}

.project-info h3 {
    margin: 0;
}

.project-info p {
    margin-top: 10px;
}

/* Over Mij pagina*/

.about-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 120px;
    background-color: #1a1a1a;
    color: #fff;
    font-family: Arial, sans-serif;
}

.text-section {
    max-width: 50%;
}

.text-section h1 {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 10px;
}

.text-section p {
    font-size: 20px;
    line-height: 35x;
    margin: 5px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2rem;
}

.icons {
    display: flex;
    margin-top: 10px;
}

.icons a {
    margin: 0 5px;
}

.icons img {
    width: 30px;
    height: 30px;
}

footer {
    text-align: center;
    margin-top: 40px;
    color: #ccc;
    padding-bottom: 40px;
}

footer a {
    color: #ccc;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}






