/* Algemene stijl */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: url('wallpaper.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hoofdinhoud */
.main-content {
    flex-grow: 1;
}

/* Container voor inhoud */
.container {
    max-width: 800px;
    margin: 100px auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Profielfoto met animatie */
.profile-pic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    animation: pulse 2s infinite alternate ease-in-out;
}

/* Pulsende animatie */
@keyframes pulse {
    0% {
        box-shadow: 0 0 8px rgba(0, 115, 177, 0.5);
    }
    100% {
        box-shadow: 0 0 25px rgba(0, 115, 177, 1);
    }
}

/* Titel stijl */
h1 {
    color: #0073b1;
}

/* Biografie stijl */
.biografie {
    text-align: justify;
}

.biografie p {
    line-height: 1.6;
}

/* Connect met mij sectie */
.connect-met-mij {
    text-align: center;
}

.connect-met-mij h2 {
    margin-bottom: 10px;
}

.connect-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.connect-links li {
    display: inline-block;
}

.connect-links img {
    width: 40px;
    height: auto;
}

/* Footer stijl */
footer {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* Mobiele weergave */
@media (max-width: 768px) {
    .container {
        margin: 40px 20px;
        padding: 20px;
    }

    .profile-pic {
        width: 120px;
        height: 120px;
    }

    .connect-links img {
        width: 30px;
    }
}
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 10px;
    background-color: #0077cc;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #005fa3;
}
