body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    background-image: url('img/image.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

h1 {
    margin-bottom: 20px;
    color: white;
    background-color: #00000089;
    padding: 10px;
    border-radius: 10px;
}

.btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 10px;
    background-color: antiquewhite;
}

.btn:hover {
    background-color: #00000045;
}

nav {
    margin-bottom: 20px;
}

#tracks-section, #artists-section {
    text-align: center;
}

.user-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: column;
    font-size: 20px;
    font-weight: bold;
}

.shares {
    display: flex;
    gap: 10px;
}

.user-profile img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-right: 10px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

.item {
    text-align: center;
    width: 200px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
}

.item:hover {
    border-radius: 10px;
    cursor: pointer;
    transform: scale(1.1);
    background-color: #00000079;
    color: white;
}

.item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.item p {
    word-wrap: break-word; 
    margin-top: 10px;
}

.item button {
    margin-top: 10px;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 5px;
}