

/* De code hieronder zorgt voor de responsive blokindeling op de website */
.project-links {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 2rem;
  }
  
  .project-tile {
    display: flex;
    padding: 1.5rem;
    background: #f3f3f3;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
  }
  
  .project-tile:hover {
    background: #e0f0ff;
    transform: scale(1.02);
  }

  .tile-content {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  /* De code hieronder lijnt de emojis op de titelkaarten op een goede manier uit */
.tile-icon {
    width: 50px;
    height: 50px;
    margin-right: 8px;
    vertical-align: middle;
  }

/* Heading styling */

.site-header {
    display: flex;
    align-items: center;        /* vertically align icon and text */
    justify-content: center;    /* center the whole block horizontally */
    gap: 1rem;                  /* space between icon and text */
    margin-bottom: 2rem;
    text-align: center;
  }
  
.site-icon {
    width: 40px;
    height: 40px;
    align-self: flex-end; 
    margin-bottom: 10px; 
  }


/* Font en heading styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    color: #222;
  }

h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    margin-left: 2rem;
}



  /* Contact tile styling */
  .contact-tile {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
  }
  
  .contact-tile a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #f9f9f9;
    color: #555;
    text-decoration: none;
    font-weight: normal;
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
    font-size: 0.95rem;
  }
  
  .contact-tile a:hover {
    background-color: #f0f8ff;
    color: #333;
    border-color: #ccc;
    transform: none;
  }
  
/* De styling van de 'gebruikte tools en software' */
.tools-heading {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
    font-weight: normal;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

.tools-used {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .tool-tile {
    background-color: #b3b3b3;
    color: #eee;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  }

/* Code Block styling */

.code-block {
    background-color: #f2f2f2;
    font-size: 0.8rem;
    color: #333;
    border-radius: 12px; 
    padding: 0.4rem 0.8rem; 
    overflow-x: auto;
  }
