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

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

/* Header styling */
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: 11px 0;

    text-align: center;
}

header h1 {
    font-size: 2.0em;
}

/* Main content styling */
main {
    max-width: 1500px;
    margin: 30px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section title styling */
h2 {
    font-size: 2em;
    color: rgba(46, 127, 147, 1);
    margin-bottom: 10px;
}

/* Paragraph styling */
p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* List styling for the values section */
ul {
    list-style-type: square;
    padding-left: 0px;
    margin-top: 7px;
}

ul li {
    font-size: 1.0em;
    margin-bottom: 10px;
}

/* Image styling */
.media img {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

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

/* Responsive design */


/* Reset default styles */


/* 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: 1px 10;
    text-align: middle;
}

header h1 {
    margin-bottom: 8.75px;
}

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;
}


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!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */