body {
    background-color: #101010;
    margin: 0; 
}

.container {
    position: relative;
}

.background {
    width: 100%;
    position: absolute;
    top: 0; 
    left: 0; 
    z-index: 0; 
}


::-webkit-scrollbar {
    width: 12px; 
}

::-webkit-scrollbar-track {
    background: #101010;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@font-face {
    font-family: 'SF Pro';
    src: url('../fonts/SF-Pro-Display-Heavy.ttf') format('truetype'); 
    font-weight: normal; 
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_18pt-Regular.ttf') format('truetype'); 
    font-weight: normal; 
    font-style: normal;
}


.artist {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 20px;
    font-family: SF Pro;
}

.container-album{
    position: relative;
    z-index: 3;
    font-family: Inter;
    color:white;
    margin-top: 100px;

}


@media (max-width: 1200px) {
    .container-album {
        margin-top: 80px; 
    }
}

@media (max-width: 992px) {
    .container-album {
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .container-album {
        margin-top: 40px; 
    }
}

@media (max-width: 576px) {
    .container-album {
        margin-top: 20px;
    }
}


.card-title {
    display: -webkit-box;        
    -webkit-line-clamp: 2;     
    -webkit-box-orient: vertical; 
    overflow: hidden;            
    text-overflow: ellipsis;  
}

.card:hover {
    background-color: #2b2b2b; 
    color: white;
}

.card {
    background-color: #101010;
    border-color: #101010; 
    transition: background-color 0.3s; 
}

.row {
    margin-right: 0;
    margin-left: 0;
}

