body {
    background-color: #f5f5f5;
    font-family: 'Times New Roman', serif;
    margin: 0;
    padding: 20px;
}

.cadrage {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

h1 {
    color: #2B3A67;
    text-align: center;
    font-size: 2.5em;
    border-bottom: 2px solid #2B3A67;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h2 {
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

h3 {
    color: #2B3A67;
    border-left: 4px solid #8B4513;
    padding-left: 15px;
}

.portrait {
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

gouda {
    display: block;
    font-style: italic;
    color: #666666;
    margin: 20px 0;
    line-height: 1.6;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 3px solid #8B4513;
}

.contributions {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin: 15px 0;
    padding: 15px;
    background-color: #ffffff;
    border-left: 3px solid #2B3A67;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    gap: 20px;
}

.song-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.song-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.spotify-btn {
    display: flex;
    align-items: center;
    background-color: #1DB954;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
    gap: 8px;
}

.spotify-icon {
    width: 20px;
    height: 20px;
}

ul li:hover {
    transform: translateX(10px);
}

.spotify-btn:hover {
    background-color: #1ed760;
}

a {
    color: #2B3A67;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #8B4513;
}

p {
    line-height: 1.6;
    color: #444444;
}