body {
    background-color: #1C4685;
    color: #FFFFFF;
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
}

header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #1C4685;
    padding: 20px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}

nav a {
    color: #1C4685;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}

nav a:hover {
    color: #333333;
}

main {
    margin: 0 auto;
    max-width: 900px;
    padding: 20px 20px;
}

.hero {
    margin-top: 20px;
    margin-bottom: 50px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.button {
    background-color: #FFFFFF;
    border-radius: 5px;
    color: #1C4685;
    font-weight: 600;
    padding: 10px 20px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.button:hover {
    background-color: #1C4685;
    color: #FFFFFF;
}

.skills {
    margin-top: 50px;
}

.skills h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.skill {
    margin-bottom: 20px;
}

.skill h3 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.progress {
    background-color: #ffffff33;
    border-radius: 8px;
    overflow: hidden;
}

.progress-bar {
    background-color: #FF5733;
    color: #ffffff;
    padding: 5px;
    text-align: right;
    border-radius: 8px;
}

.profile {
    text-align: center;
}

.profile-picture img {
    border: 4px solid #ffffff;
    border-radius: 50%;
}

.projects {
    text-align: center;
}

.project {
    margin-bottom: 40px;
}

.project img {
    border-radius: 8px;
    max-width: 50%;
}

.project a {
    color: #FF5733;
    font-weight: 600;
    text-decoration: none;
}

.contact-form {
    margin: 0 auto;
    max-width: 600px;
}

.contact-form h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    border: none;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 10px;
    width: 100%;
}

.contact-form button {
    background-color: #FF5733;
    border: none;
    border-radius: 5px;
    color: #FFFFFF;
    cursor: pointer;
    padding: 10px 20px;
    transition: background-color 0.2s;
}

.contact-form button:hover {
    background-color: #E04E23;
}

footer {
    margin-top: 50px;
    text-align: center;
}

.about-me {
    margin-top: 20px;
    text-align: center;
}

.about-me h2 {
    color: #1C4685;
    font-size: 2em;
}

.about-me .profile-picture img {
    border: 3px solid #FFFFFF;
    border-radius: 15%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    height: 300px;
    object-fit: cover;
    width: 300px;
}

.about-me p {
    color: #FFFFFF;
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-me figcaption {
    color: #FFFFFF;
    font-style: italic;
}

@media only screen and (max-width: 600px) {
    .profile-picture {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}
.header-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.dropdown {
    display: inline-block;
    text-align: center;
    /* margin-top: 20px; Voeg wat bovenmarge toe om ruimte te creëren tussen de h1 en de dropdown */
}

.dropdown .dropbtn {
    font-size: 17px;    
    border: none;
    outline: none;
    color: #1C4685;
    /* padding: 0px 16px; */
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media only screen and (max-width: 600px) {
    .dropdown {
        width: 100%; /* Zorg ervoor dat de dropdown de volledige breedte van de parent inneemt op kleinere schermen */
    }
}

.myGif {
    width: 200px; /* Adjust as needed */
    height: auto; /* Maintain aspect ratio */
}

.linkedin-button {
    display: inline-block;
    background-color: #0077B5; /* LinkedIn blauw */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.linkedin-button:hover {
    background-color: #005582; /* Donkerder blauw bij hover */
    color: white;
}

.linkedin-button i {
    margin-right: 8px;
    color: white; /* Zet het icoon in wit */
}

