body {
    margin-top: 50px;
}
.homepage-container {
    display:flex;
    color: var(--font-color1);
    overflow-x: hidden;
    margin-bottom: 100px;
    
}

.discover-container,
.recently-played {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    /* padding-bottom: 100px; */

}

.content-header {
    display: inline-block;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 20px;
    margin-left: 20px;

}

.content-container {
    display: flex;
    flex-direction: row;
    width: fit-content;
    height: 275px;
    gap: 20px;
    margin-left: 20px;
    
}

.scrollable-content {
    display: flex;
    position: relative;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    
}

.scrollable-content::-webkit-scrollbar {
    -webkit-appearance: none;
}


.square-item, .circle-item {
    position:static;
    background-color: white;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    
}

.square-item {
    border-radius: 10%;
}

.circle-item {
    border-radius: 50%;
}

.album-info, .artist-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--font-color1);
}

.album-title {
    font-size: 18px;
    font-weight: bold;
}

.album-artist-name {
    font-size: 16px;
    
}

.artist-container .artist-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--font-color1);
}

#artist1 {
    background: url(../img/artist-img1.jpeg) no-repeat center center;
    background-size: cover;
}

.search-result-container .circle-item {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.circle-item {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

.square-item {
    background: url(../img/album-cover2.jpg) no-repeat center center;
    background-size: cover;
}

.artist-latest-release .square-item {
    background: url('../img/album-cover2.jpg');
    background-size: cover;
}

.homepage-container .square-item {
    background: url('../img/album-cover1.jpeg');
    background-size: cover;
}

#playlist {
    background: url('../img/playlist-cover1.png');
    background-size: cover;
}

.song-track-img {
    background: url('../img/song-cover2.jpeg');
    background-size: cover;
}