:root{
    --background-color: #131313;
    --text-color: #a53c3c;
    --link-color: #a382c0;
    --link-color-dark: #402c51;
    --background-light: #f0eded;
}
/* #705c82 */
body{
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace;
    background-image: url('/img/backgrounds/red-cross.jpg');
    background-size: 300px;
    color: var(--text-color);
}
.wrapper{
    background-color: var(--background-color);
    padding: 1rem;
    display: flex;
    flex-direction: row;
    padding: 0;
}
hr{
    margin: 1rem 0;
}
#content{
    padding: 10px;
    width: 100%;
}
a{
    color: var(--link-color);
}
#back a{
    background-color: var(--text-color);
    color: var(--background-color);
}
header{
    width: 100%;
    height: fit-content;
    border-bottom: solid 1px var(--text-color);
    background-color: var(--background-color);
    padding: 1rem;
}
h2{
    font-size: 20px;
    margin-bottom: 0.5rem;
}
.flex-row{
    display: flex;
    flex-direction: row;
}

#musicPosts ul{
    list-style-type: none;
}
#albumholder{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}
#albumholder .album{
    width: 100%;
}
.album img{
    width: 100%;
}
.album{
    background-color: #cbc0c0;
    padding: 12px;
    text-align: center;
    width: fit-content;
    border-radius: 6px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.album:hover{
    background-color: var(--background-light);
}
.albumdetails{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.albumtitle{
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
}
.albumtitle:hover{
    text-decoration: underline;
}
.albumartist{
    text-decoration: none;
}
.albumartist:hover{
    text-decoration: underline;
}
.album a{
    color: var(--link-color-dark);
    font-weight: 600;
}
.description{
    color: var(--background-color);
    text-align: left;
}
.date{
    font-style: italic;
}
.date::before{
    content: ">> ";
    font-style: italic;
}

#favouritesongs{
    display: flex;
    overflow-y: auto;
    gap: 0.5rem;
    width: 140px;
}

.song{
    background-color: var(--background-light);
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    min-width: 140px;
    position: relative;
    text-decoration: none;
}
.song img{
    width: 100%;
}
.song p, .song a{
    color: var(--link-color-dark);
    text-decoration: none;
    font-weight: 600;
}