/* custom fonts */
@font-face{
    font-family:"Gothic";
    src:url(fonts/MSGOTHIC.TTF);
    font-style: normal;
}

@font-face{
    font-family:"Neophyte";
    src: url(fonts/Y2K_neophyte.ttf);
    font-style: normal;
}

@font-face{
    font-family:"Signover";
    src: url(fonts/Platinum_Sign_Over.ttf);
    font-style: normal;
}

body{
    margin: 25px 0;
    width: 100%;
    min-width: 360px;
}

h1{
    font: 24px Gothic;
    margin: 5px;

    user-select: none;
}

h2{
    font: 32px Neophyte;
    margin: 5px 0;
    margin-top: 0;
    
    user-select: none;
}

.container{
    display: flex;
    
    margin: 0 auto;
    max-width: 680px;

    justify-content: space-between;
}

.header{
    margin: 0 auto;
    padding-left: 13px;

    display: flex;
    flex-direction: row;

    max-width: 680px;

    text-align: left;
}

.header button{
    margin: auto 0;
    margin-left: 15px;
    padding: 3px 8px;
    border: none;

    width: 45px;
    height: 22px;

    background-color: #eee;
    color: #000;
    text-decoration-line: none;
    text-align: center;

    transition: 0.2s;
}

.header button:hover{
    transition: 0.2s;

    cursor: pointer;
    width: 52px;

    background-color:#d7f5fa;
}

/* left settings */
.left{
    width: 25%;
    min-width: 170px;
}

.categories{
    display: flex;
    flex-direction: column;

    direction:ltr;
    overflow-y: auto;
}

.catButton{
    width: 145px;

    margin-left: 5px;
    padding: 4px 0;

    border: 2px solid #fff;
    background-color: #eee;

    font-size: 13px;
    font-family: Arial;

    transition: 0.3s ease-out;
}

.catButton:hover{
    transition: 0.2s;

    cursor: pointer;
    width: 160px;
    background: #ffe5cf;
}

.catActive{
    transition: 0.4s;

    cursor: default;
    width: 125px;
    background: #d9ffcf;

    font-weight: bold;
}

.catActive:hover{
    transition: 0.4s;

    cursor: default;
    width: 125px;
    background: #d9ffcf;
}

/* mid settings */
.mid{
    width: 35%;
}

.mid h1{
    height: 24px;
}

#selCategory{
    color:#bbb;
}

.artist{
    font-size: 11px;
    color: #303030;

    font-weight: normal;
}

.songs{
    width: 166px;

    margin-left: 5px;
    padding: 4px 12px;

    border: 2px solid #fff;
    background-color: #eee;

    font-size: 13px;
    font-family: Arial;
    line-height: 0.95;
    word-wrap: break-word;

    user-select: none;

    transition: 0.4s ease-out;
}

.songs:hover{
    cursor: pointer;

    transition: 0.2s;
    padding-right: 24px;
    background: #ffe5cf;
}

.songActive{
    transition: 0.4s;

    cursor: default;

    background: #d9ffcf;
    margin-left: 0;
    padding-left: 9px;
    padding-right: 2px;

    font-weight: bold;
}

.songActive:hover{
    transition: 0.4s;

    cursor: default;

    background: #d9ffcf;
    margin-left: 0;
    padding-left: 9px;
    padding-right: 2px;

    font-weight: bold;
}

.songDiv{
    height: 220px;
    overflow-y: auto;
}

/* right settings */
.right{
    width: 30%;
}

@media only screen and (max-width: 680px){
    .container{
        flex-direction: column;
    }

    .header{
        display: flex;

        justify-content: center;
    }

    .header button:hover{
        transition: 0.2s;
    
        cursor: pointer;
        width: 45px;

        font-weight: bold;
    
        background-color:#d7f5fa;
    }

    .left, .mid, .right{
        margin: 5px auto;
        width: 280px;
    }

    .songDiv{
        mask-image: linear-gradient(rgba(0, 0, 0, 0), #000 2.5% 95%, rgba(0, 0, 0, 0));
    }
}