* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 100px; 
    height: auto;
}

.menu button {
    background-color: #f0f0f0;
    border: none;
    padding: 10px 15px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 25px; /* Aangepast voor betere zichtbaarheid */
    border-radius: 5px;
}

.menu button:hover {
    background-color: #e0e0e0;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Verander naar flex-start om alles naar boven te uitlijnen */
    margin-top: 20px;
    padding: 20px;
}

.intro-text {
    text-align: left; /* Zorgt ervoor dat de tekst links wordt uitgelijnd */
    width: 220px; 
    margin-right: auto; /* Zorgt ervoor dat de tekst helemaal links wordt gepositioneerd */
}

.profile-container {
    display: inline-block;
}

.profile-pic {
    width: 250px; 
    height: 250px; 
    object-fit: cover; 
    border-radius: 15px; 
}

.youtube-logo {
    width: 250px;
    height: 250px;
    position: relative;
    top: 10px;  
    right: 0px;  
}

.social-media {
    text-align: center;
    margin-top: 40px;
    float: left;
}

.social-media h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.icons {
    display: flex;
    justify-content: left-bottom;
    gap: 20px; 
    float: left;
    width: 100%;
}

.icons img {
    width: 150px; 
    height: 150px;
}

.icons2 {
    display: flex;
    justify-content: left-bottom;
    gap: 20px; 
    width: 100%;
    margin-left: auto;
}

.icons2 img {
    width: 150px; 
    height: 150px;
}

.videos {
    text-align: center;
    margin-top: 40px;
    float: right;
}

.videos h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.video-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.video-thumbnails img {
    width: 280px; 
    height: 300px;
}

.video-thumbnails a {
    text-decoration: none;
}
