body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f7fafc;
    color: #222;
}
header {
    background: linear-gradient(to right, #409fff, #6fb1fc);
    padding: 20px 0 20px 0;
    text-align: center;
    color: white;
}
h1 {
    font-size: 2.6em;
    margin-bottom: 0.5em;
    letter-spacing: 2px;
}

section {
    background: white;
    margin: 32px auto 0 auto;
    max-width: 750px;
    padding: 28px 36px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(150,150,150,0.12);
}
h2 {
    color: #409fff;
    font-size: 1.5em;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 6px;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul > li {
    padding: 16px 0 16px 0;
    border-bottom: 1px solid #f0f0f2;
}
ul > li:last-child {
    border-bottom: none;
}
img {
    border-radius: 13px;
    box-shadow: 0 1px 12px rgba(100,140,210,0.18);
    margin: 16px 0 6px 0;
}
.hobby-title.snowboarden::before { content: "🏂 "; }
.hobby-title.ict::before { content: "💻 "; }
.hobby-title.reizen::before { content: "✈️ "; }
.hobby-title.italiaans::before { content: "🍝 "; }
.hobby-title.muziek::before { content: "🎧 "; }
@media (max-width: 800px) {
    body, section { padding: 10px; }
    section { max-width: 95vw; }
}
a {
    color: #409fff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
    font-weight: bold;
}

a:hover::before {
    content: " 🔗";
    font-weight: normal;
}

footer {
    background: #409fff;
    color: white;
    text-align: center;
    padding: 24px 0 16px 0;
    margin-top: 40px;
    font-size: 1.1em;
    letter-spacing: 1px;
}