/*
This is the CSS file that controls the section of the album box dedicated to displaying the album data.
*/

.album{
    display:flex;
}

.albumbox{
    
    border-width: 4px;
    border-style: solid;
    border-color: white;
    border-right-width: 0px;
    
    width: 26%;
    height: 80vh;
    background: #0e0e10;

    
    color:white;

    /*
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    */
}
.albuminfo{
    padding-left: 14px;
    line-height: 60%;
}

.albumboxpadding{
    height: 90px;
}

.cover{
    width: 100%;

}
.nsfw{

    filter: blur(25px)
}

.blur{
    overflow: hidden;
}




.albumtitle{
    font-weight: bolder;
    font-size: 260%;
    
}

.albumartist{
    font-size: 180%;
    font-weight: 100;
    color: #CCCCCC;
}
.releasedate{
    font-size: 130%;
    font-weight: 100;
    color: #777777;
}