        *{
            margin: 0%;
            padding: 0%;
        }
        html, body{
            height: 100%;
            margin: 0;
            height: 100%;
            padding: 0;
        }
        body{
            background-color: whitesmoke;
            text-align: center;
            display: flex;
            flex-direction: column;
        }
header {
    background-color: #2c69c9;
    color: aliceblue;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    position: relative; 
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    padding: 0 20px; 
    height: 80px; 
}

header h1 {
    text-align: left;
    margin: 0;
}


.hamburger {
    font-size: 28px;
    cursor: pointer;
    z-index: 1002;
    position: absolute;
    right: 20px; 
    top: 50%; 
    transform: translateY(-50%);
}

nav {
    display: none;
    flex-direction: column;
    background-color: #2c69c9;
    position: absolute;
    top: 80px; 
    right: 20px;
    width: 220px;
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1001;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

nav.active {
    display: flex;
}

nav a {
    display: block;
    text-decoration: none;
    color: #2c69c9;
    background-color: white;
    margin: 5px 12px;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: #295bab;
    color: white;
    transform: translateX(3px);
}
        
main{
    flex: 1;
        
}
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
footer{
    background-color: #2c69c9;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
}
h1{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
}
h2{
    margin: 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
a{
    color: black;
    border-radius: 5px;
    margin-left: 10px;
    padding: 3px;
    margin-top: 5px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

a:hover{
    background-color: darkcyan;
}    
p{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
li{
    margin-bottom: 10px;
    margin-top: 10px;
    list-style-position: inside;
    padding-left: 0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.projects {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.project{
    background-color: #2c69c9;
    border-radius: 12px;
    color: white;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.project h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}
.project p {
    margin-bottom: 10px;
    line-height: 1.5;
}
p, footer{
     margin-top: 10px;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
  border-radius: 5px;
  background-color: whitesmoke;
  padding: 20px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin-top: 40px;
}
label {display: block;}

input[type=text], select {
  width: 30%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
input[type=email], select {
  width: 30%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
input[type=radio] {
  display: flex;
  flex-direction: row;
}
.reden{
    display: flex;
    flex-direction: row;
    width: 30%;
    justify-content: space-between;
}
.recentie{
    width: 30%;
}
input[type=submit] {
  width: 30%;
  background-color: #2b6edb;
  color: white;
  padding: 14px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #2b6edb;
}
.bericht {
    background-color: #d4edda;   
    color: #155724;              
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #c3e6cb;
    width: fit-content;
    margin: 20px auto;           
    font-weight: bold;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.playlist {
    max-width: 700px;
    margin: 25px auto;
    padding-left: 20px; 
}
.playlist li {
    background-color: white;
    color: #2c69c9;
    font-weight: bold;
    margin: 12px 0;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    list-style-position: inside;
}
.playlist li:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.18);
}
.playlist a {
    text-decoration: none;
    color: #2c69c9;
    font-size: 1.1rem;
}
.playlist a:hover {
    text-decoration: underline;
    color: #295bab;
}
.hobbies {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.hobby {
    background-color: #2c69c9;
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    padding-bottom: 10px;
    overflow: hidden;
}
.hobby img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: white;
}
.accordion {
    background-color: white;
    color: #2c69c9;
    cursor: pointer;
    padding: 15px;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s ease;
}
.accordion:hover {
    background-color: #e5e5e5;
}
.panel {
    padding: 0 15px;
    display: none;
    background-color: #2c69c9;
    color: white;
}
.panel p {
    margin: 15px 0;
    line-height: 1.5;
}  
.about-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 20px;
}
.about-intro {
    background-color: #2c69c9;
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    margin-bottom: 30px;
}

.about-intro h3 {
    margin-bottom: 10px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.about-card {
    background-color: white;
    color: #2c69c9;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}
.about-card h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}
.about-extra {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    color: #2c69c9;
}
.about-extra h3 {
    margin-bottom: 10px;
}      
       
