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


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

header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    background: #f5f5f5;
    padding: 10px;
    border-bottom: 2px solid black;
}

header img {
    height: 60px;
}

nav ul {
    display: grid;
    grid-template-columns: repeat(3, auto);
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: end;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

main {
    width: 80%;
    margin: auto;
    text-align: center;
}

h1 {
    margin: 20px 0;
    font-size: 28px;
}

.content {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.content section {
    display: table-cell;
    width: 33%;
    vertical-align: top;
    padding: 20px;
}

.image img {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: auto;
}

.gallery {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin-top: 20px;
}

.galerleft, .galerright, .werk {
    display: table-cell;
    width: 33.3%;
    text-align: center;
    vertical-align: middle; 
}

.galerleft img, .galerright img {
    width: 100%;
    max-width: 300px;
    vertical-align: middle; 
}

.werk {
    padding: 0 20px;
}

footer {
    padding: 10px 20px; 
    border-top: 2px solid #333;
    font-size: 14px; 
    position: relative; 
  }
  
  .social-icons {
  text-align: center;
  }
  
.social-icons img {
    width: 40px; 
    height: auto;
  }
  
  .footer-text {
    position: absolute;
    right: 20px; 
    top: 50%;
    text-align: right;
  }
