/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}



/* Header styling, voor gradient background moet je geen background-color egrbuiken maar nbackground*/
header {
    background: linear-gradient(to right, rgba(72, 190, 129, 1), rgba(62, 171, 132, 1), rgba(52, 153, 136, 1), rgba(46, 127, 147, 1), rgba(43, 114, 153, 1), rgba(41, 108, 156, 1), rgba(56, 88, 185, 1), rgba(64, 78, 199, 1));
    color: white;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
    color: rgb(97, 228, 228);
    transition: color 0.4s ease;


}

/* Main content styling */
main {
    margin: 20px 0;
}

.intro {
    background-color: #e4e4e4;
    padding: 15px;
    border-radius: 5px;
}

section.content1 {
    display: flex;
    gap: 20px;
}

section.content2 {
    display: flex;
    gap: 20px;
}

section.content3 {
    display: flex;
    gap: 20px;
}

section.content4 {
    display: flex;
    gap: 20px;
}

section.content5 {
    display: flex;
    gap: 20px;
}

section.content6 {
    display: flex;
    gap: 20px;
}

a {
    text-decoration: none;
    color: inherit;
    width: 600px;
    text-align: center;

}

/* Style the article to look like a button */
article {
    display: block;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border-radius: 5px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
    padding: 20px;
    border: 1px solid #ddd;
    flex: 1;

}

article:hover {
    background-color: #a9a8a8;
    cursor: pointer;
}


/* Footer styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* vanaf hier is voor Contact!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */


/* Contact Section Styling */
#contact {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#contact h1 {
    text-align: center;
    color: #4CAF50;
    margin-bottom: 20px;
    color: rgba(46, 127, 147, 1)
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input,
textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

textarea {
    height: 150px;
    resize: vertical;
}

/* Button Styling */
button[type="submit"] {
    background-color: rgba(46, 127, 147, 1);
    color: white;
    padding: 15px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;

}

button[type="submit"]:hover {
    background-color: #45a049;

}

/* vanaf hier profielopmaak!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Profile Section Styling */
#user-profile {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    padding: 20px;
    text-align: center;
}

/* Profile Picture Styling */
.profile-pic img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #4CAF50;
    margin-bottom: 20px;
}

.upload-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.upload-button:hover {
    background-color: #45a049;
}

/* Personal Info Styling */
.profile-info h1 {
    font-size: 2em;
    color: #4CAF50;
    margin-bottom: 10px;
}

.profile-info p {
    font-size: 1.2em;
    margin-bottom: 15
}