* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000000;
    color: #fff;
    font-family: 'Poppins', Sedgwick Ave;
    line-height: 1.6;
}

/* Header */
header {
    background: #000000;
    padding: 15px;
    text-align: center;
    border-bottom: 3px solid #000000;
}

header h1 {
    font-size: 3rem;
    letter-spacing: 5px;
    color: #ffffff;
	font-family: "Gochi Hand", cursive;
}

header p {
    margin-top: 8px;
    font-size: 1rem;
    color: #ccc;
}

/* Hero afbeelding */
.hero img {
    max-width: 700px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Inhoud */
.container {
    width: 90%;
    max-width: 500px;
    margin: 40px auto;
}

.section {
    margin-bottom: 50px;
}

.section h2 {
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffffff;
    display: inline-block;
	font-family: "Shadows Into Light", cursive;
}

.section p {
    color: #ddd;
}

/* Knoppen */
.button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #ff6600;
    color: black;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.button:hover {
    background: #000000;
}

/* Footer */
footer {
    background: #000000;
    text-align: center;
    padding: 25px;
    color: #888;
    border-top: 3px solid #000000;
}
