.Project-img {
    width: 200px;
    height: 200px;
    border-radius: 10px;
}


.sidebar-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 200px;
    background: #f4f4f4;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
    z-index: 1000;
}
.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
.sidebar-nav li {
    width: 100%;
}
.sidebar-nav a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}
.sidebar-nav a:hover {
    background: #ddd;
}


.projects-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}
.Project {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 350px;
    background: #fafafa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 24px 18px;
}
.Project-img {
    margin-bottom: 20px;
}
.Project-uitleg {
    max-width: 600px;
    text-align: center;
}

.divider {
    width: 100vw;
    height: 6px;
    background: #000;
    margin: 40px 0 30px 0;
    border-radius: 3px;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.content-wrapper {
    max-width: calc(100vw - 220px); 
    margin: 0 auto;
    padding-right: 220px; 
    box-sizing: border-box;
}

.project-title {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 2.8rem;
    margin: 30px auto 20px auto;
    letter-spacing: 2px;
}