html, body {
    margin: 0;
    padding: 0;
    background-color: #FFF6B8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFF6B8;
    padding: 10px;
}

#logo {
    width: 100px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

nav {
    flex-grow: 1;
    margin-left: 20px;
}

nav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 10px;
    background-color: #FFFCD3; /* Lighter color for text area */
    margin: 4px 0; /* Adds spacing around the lighter strip */
    border-radius: 6px; /* Slightly rounds the edges for a softer look */
}

nav ul li {
    padding: 10px;
}

.container {
    display: flex;
}

aside {
    padding: 20px;
    width: 256px;
    min-height: 400px;
    background-color: #FFF6B8;
}

aside ul {
    list-style: none;
}

aside ul li {
    margin-bottom: 10px;
}

.album-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.album-list li {
    margin-bottom: 20px;
}

.album-list img {
    display: block;
    margin: 0 auto;
    width: 125px;
    height: 125px;
}

main {
    flex-grow: 1;
    padding: 20px;
    background-color: #FFF6B8;
}

footer {
    background-color: #FFF6B8;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100vw;
    bottom: 0;
}

footer img {
    height: 35px;
    margin-right: 10px;
}

footer p {
    margin: 0;
    line-height: 35px;
}

main p {
    margin-bottom: 16px;
    line-height: 1.6;
}

main ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

main ul li {
    margin-bottom: 10px;
}

.artist-releases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.release {
    text-align: center;
}

.release img {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.release .links {
    margin-top: 10px;
}

.release .links a {
    text-decoration: none;
    color: #000;
}

.release .links a:hover {
    text-decoration: underline;
}

.artist-portrait {
    float: right;
    border: 1px solid #000;
    margin-left: 20px;
    margin-top: 1px;
    margin-bottom: 1px;
    max-width: 100%;
    max-height: 300px;
    height: auto;
}