/* Universal selector */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Element selectors */
body {
    background-color: #f8f9fa;
    padding: 20px;
    line-height: 1.6;
}

/* Class selector */
.bio {
    color: #333;
    margin-bottom: 15px;
}

/* ID selector */
#featured-albums {
    margin-top: 20px;
    padding: 15px;
    background-color: #ececec;
    border-radius: 5px;
}

/* Attribute selector */
a[href*="albums.html"] {
    color: #0066cc;
    text-decoration: none;
}

a[href*="albums.html"]:hover {
    color: #004d99;
    text-decoration: underline;
}
