#records {
    /* padding: 1rem */
    margin-bottom: 2rem;
   
}

h2 {
    margin-left: 1rem;
    margin-bottom: 0.5rem;
}


#albCont {
    position: relative;
    background: linear-gradient(50deg, rgba(128, 128, 128, 0.669) , rgba(250, 250, 210, 0.576)) ;
    
    display: flex;
    justify-content: space-around;
    column-gap: 1rem;
    padding: 1rem;
    
    overflow-x: scroll;
    overflow-y: hidden;

    border-top: black solid 0.05rem;
    border-bottom: black solid 0.05rem;
    
    scrollbar-color: black lightgoldenrodyellow;
    scrollbar-width: 0.2rem;
    
}

.alb {
    
    min-width: 7rem;
    min-height: 7rem;
    /* background-color: blueviolet; */

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 2;

    position: relative;
}

.album {
    width: 100%;
    border: white solid 0.1rem;
    /* border-radius: 0.4rem; */
    cursor: pointer;
}

.alb p {
    text-align: center;
    font-weight: 200;
    pointer-events: none;
}

.albInfo{
    
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;

    background-color: rgba(255, 255, 255, 0);
    transition: 0.2s;

}



h3 {

    font-size: 0.5rem;
    font-weight: 500;
    text-align: left;
    padding: 0.5rem 0.5rem 0.2rem 0.5rem;


}

h4 {

    font-size: 0.4rem;
    font-weight: 400;
    text-align: left;
    padding: 0 0.5rem;
    line-height: 0.5rem;
}

.albText {
    visibility: hidden;
}

.iconCont {
    
    width: 100%;
    height: 4.1rem;
    margin-top: 0.3rem;
    overflow: hidden;
    /* background-color: red; */

    display: flex;
    align-items: center;
    justify-content: space-around;
}

.icon {
    flex: 1;
    max-width: 1.2rem;
    height: 1.2rem;
    /* background-color: blue; */
    object-fit: contain;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    visibility: hidden;
}

.icon img {
    max-width: 1.2rem;
}

@media (hover: hover){

    .albInfo:hover {
    
        background-color: rgb(255, 255, 255);
    }
    
    .albInfo:hover .albText, .albInfo:hover .icon{
        
        visibility: visible;
    }
}

@media (hover: none){

    .albInfo {
    
        background-color: rgba(255, 255, 255, 0.264);
    }
    
    .albText, .icon{
        
        visibility: visible;
    }
}

