body{
     font-family: Franklin Gothic Heavy, sans-serif;
    font-size: 30px;
    margin: 10, 20, 10, 50;
    padding: 0px;
    background: linear-gradient(135deg,#e5d6a9 100%);
    color: rgb(0, 0, 0);
    h1 {
        text-shadow: .3px .3px 4.5px #222222;
    }

.header-flex {
  display: flex;
  justify-content: flex-start;
  padding-left: 100px;          
  padding-top: 0px;            
}

.header-flex h1 {
  margin: 0;
  font-size: 75px;
}
.rectangle p {
  font-family: Arial, sans-serif; 
  font-size: 25px;              
  line-height:35px;
}
.header-flex {
  display: flex;
  justify-content: space-between; 
  align-items: start;
  padding: 50px 5px 5px 25px;
  background-color: transparent; 
}

.header-flex h1 {
  margin: 10;
  font-size: 60px;
}
.header-flex nav ul {
  list-style: none;
  display: flex;
  gap: 20px; 
  margin: 0 auto;
  padding: 0;
}

.header-flex nav ul li a {
  text-decoration: none;
  font-size: 30px;
  color: black; 
  font-weight: 600;
  transition: color 0.3s ease;
}

.header-flex nav ul li a:hover {
  color: #0009bb; 
  cursor: pointer;
} 
.social-icons {
  min-height: calc(100vh - 100px); 
}
.social-icons {
  display: flex;
  justify-content: center;     
  align-items: center;         
  gap: 100px;                   
  min-height: 70vh;           
  flex-wrap: wrap;             
  background-color: #f0f0f000;   
}

.social-icons a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Arial, sans-serif;
}

.social-icons i {
  font-size: 120px;
  color: #000000;
  margin-bottom: 8px;
}
.skills-text {
  max-width: 600px;
  margin: -200px auto 0 auto;
  text-align: center;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  padding: 0 20px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Franklin Gothic Book', sans-serif;
  background-color: #f0f8ff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 20px;  
}

.header-flex {
  display: flex;
  flex-direction: column;  
  align-items: center;     
  margin-bottom: 40px;     
  text-align: center;      
}

.header-flex h1 {
  font-size: 36px;         
  margin-bottom: 20px;     
  color: #333;             
}

.header-flex nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;         
  gap: 15px;               
  justify-content: center; 
}

.header-flex nav a {
  text-decoration: none;
  color: #333;
  padding: 8px 15px;               
  background-color: #EEDA97;       
  border: 2px solid #333;          
  border-radius: 5px;              
  transition: background-color 0.3s; 
}

.header-flex nav a:hover {
  background-color: #ffeaa7; /* Toegevoegd */
}

.social-icons {
  display: flex;
  flex-direction: column;  /* Toegevoegd voor mobiel */
  gap: 20px;               /* Toegevoegd */
  margin: 30px auto;       /* Toegevoegd */
  align-items: center;     /* Toegevoegd */
  width: 100%;             /* Toegevoegd */
  max-width: 400px;        /* Toegevoegd */
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;               /* Toegevoegd */
  text-decoration: none;
  color: #333;
  background-color: #EEDA97;
  padding: 15px 25px;      /* Toegevoegd */
  border: 2px solid #333;
  border-radius: 8px;      /* Toegevoegd */
  font-size: 18px;         /* Toegevoegd */
  font-weight: bold;       /* Toegevoegd */
  transition: all 0.3s;    /* Toegevoegd voor animaties */
  width: 100%;             /* Toegevoegd */
}

.social-icons a:hover {
  background-color: #ffeaa7;
  transform: translateY(-3px);        /* Toegevoegd - beweegt omhoog */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Toegevoegd - schaduw */
}

.social-icons i {
  font-size: 24px;  /* Toegevoegd */
}

.skills-text {
  max-width: 600px;           /* Toegevoegd */
  margin: 30px auto;          /* Toegevoegd */
  padding: 25px;              /* Toegevoegd */
  background-color: #fff;     /* Toegevoegd */
  border: 2px solid #333;     /* Toegevoegd */
  border-radius: 8px;         /* Toegevoegd */
  text-align: center;         /* Toegevoegd */
}

.skills-text p {
  font-size: 16px;      /* Toegevoegd */
  line-height: 1.8;     /* Toegevoegd */
  color: #333;          /* Toegevoegd */
}
/* MEDIA QUERIES */

/* Tablets (768px en groter) */
@media screen and (min-width: 768px) {
  body {
    padding: 40px;
  }

  .header-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }

  .header-flex h1 {
    font-size: 48px;
    margin-bottom: 0;
    text-align: left;
  }

  .header-flex nav ul {
    gap: 20px;
  }

  .social-icons {
    flex-direction: row;
    gap: 30px;
    max-width: 800px;
    margin: 50px auto;
  }

  .social-icons a {
    padding: 20px 30px;
    font-size: 20px;
    flex: 1;
  }

  .social-icons i {
    font-size: 28px;
  }

  .skills-text {
    max-width: 700px;
    padding: 35px;
    margin: 40px auto;
  }

  .skills-text p {
    font-size: 18px;
    line-height: 2;
  }
}

/* Desktop (1024px en groter) */
@media screen and (min-width: 1024px) {
  body {
    padding: 60px;
  }

  .header-flex h1 {
    font-size: 60px;
  }

  .header-flex nav ul {
    gap: 30px;
  }

  .header-flex nav a {
    padding: 10px 20px;
    font-size: 18px;
  }

  .social-icons {
    gap: 40px;
    max-width: 1000px;
    margin: 70px auto;
  }

  .social-icons a {
    padding: 25px 40px;
    font-size: 22px;
  }

  .social-icons i {
    font-size: 32px;
  }

  .skills-text {
    max-width: 800px;
    padding: 45px;
    margin: 50px auto;
  }

  .skills-text p {
    font-size: 20px;
    line-height: 2.2;
  }
}

/* Grote schermen (1440px en groter) */
@media screen and (min-width: 1440px) {
  .social-icons {
    max-width: 1200px;
  }

  .skills-text {
    max-width: 900px;
  }
}

/* Kleine mobiele telefoons */
@media screen and (max-width: 480px) {
  .header-flex h1 {
    font-size: 28px;
  }

  .header-flex nav a {
    padding: 6px 12px;
    font-size: 14px;
  }

  .social-icons {
    gap: 15px;
    margin: 20px auto;
  }

  .social-icons a {
    padding: 12px 20px;
    font-size: 16px;
  }

  .social-icons i {
    font-size: 20px;
  }

  .skills-text {
    padding: 20px;
    margin: 20px auto;
  }

  .skills-text p {
    font-size: 14px;
    line-height: 1.6;
  }
}
}