header {
    background: #111;
    color: white;
    padding: 20px;
    text-align: center;
}

.introductie {
	text-align: center;
	font-family: "Gill Sans", sans-serif;
	background-color: #696969;
	border-radius: 25px;
	color: 
}
 h2 {
    font-size: 2;
    margin-bottom: 5px;
}

/* Naam van de artiest */
.lyrics-page h3 {
    color: #666;
    margin-top: 0;
    margin-bottom: 25px;

}

/* Lyrics container */
p {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    line-height: 1.8;
    font-size: 1.1;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
	font-family: "Gill Sans", sans-serif;
}


.lyrics p {
    margin-bottom: 18px;
	text-align: center;
}

.lyrics {
    display: inline-block;
    margin-top: 25px;
    color: white;
    background: #999;
    padding: 10px 16px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.lyrics:hover {
    background: #444; /*verander lyrics kleur als je erover gaat met de muis*/
}
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}