@font-face {
    font-family: 'Title';
    src: url('../fonts/Unageo-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

#player {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#timeline {
    width: 80%;
    height: 10px;
    margin-top: 1vmax;
    padding: 0;
}
/* input[type='range'] {
    -webkit-appearance: none !important;
    background: #110133;
    border-radius: 0.25vmax;
    height: 0.5vmax;
}
input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    height: 0.8vmax;
    width: 0.8vmax;
    border-radius: 50%;
    background-color: #efcd33;
    cursor: pointer;

} */

.song {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    border-radius: 2vmax;
    transition-duration: 0.15s;
    cursor: pointer;
}
.song:hover {
    background-color: rgba(255, 255, 255, 0.314);
    transition-duration: 0.15s;
}

#side-bar {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-right: 3vmax;
}
#side-bar img {
    height: 3vmax;
    width: 3vmax;
    transition-duration: 0.25s;
    cursor: pointer;
}
#side-bar img:hover {
    transform: scale(1.1);
    transition-duration: 0.25s;
}

#album-cover {
    width: 15vmax;
    height: 10vmax;
    margin-top: 2%;
}
#gameImage {
    width: 11.5vmax;
    height: 11.5vmax;
    background-image: url("../images/throwbro.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: solid 0.2vmax #2e222f;
}

.audiobutton {
    height: 2vmax;
    width: 2vmax;
    cursor: pointer;
    margin: auto;
    transition-duration: 0.15s;
}

.audiobutton:hover {
    transform: scale(1.1);
    transition-duration: 0.15s;
}

#playbutton {
    height: 3.5vmax;
    width: 3.5vmax;
    transition-duration: 0.15s;
}

#playbutton:hover {
    transform: scale(1.1);
    transition-duration: 0.15s;
}
#controls {
    display: flex;
    justify-content: center;
    margin: auto;
    margin-top: 1vmax;
    margin-bottom: 1vmax;
    width: 25%;
    gap: 1vmax;
}

#songinfo {
    text-align: center;
    width: 100%;
}
#songtitle {
    color: #e83b3b;
    text-shadow: 3px px #2e222f51;
    font-size: 2vmax;
    font-family: "Title";
    margin-bottom: 0;
}
#songdesc {
    color: #5bcc6e;
    text-shadow: 3px px #165a4c;
    font-size: 1.5vmax;
    font-family: "Jersey 20", sans-serif;
}

@media only screen and (max-width: 1000px) { 
    #contact-holder {
        display: none;
    }

    #music {
        grid-row: 3 / 10;
        padding-top:0;
    }

    #player {
        display: grid;
        grid-auto-rows: minmax(0px, 4vmax);
        grid-template-columns: repeat(5, minmax(0,1fr));
    }

    #side-bar {
        flex-direction: row;
        order: 0;
        padding: 0;
        margin: 0;
        grid-column: 1 / -1;
        grid-row: 8 / 9;
    }

    #album-cover {
        grid-column-start: 1;
        grid-row-start: 2;
    }

    #songinfo {
        grid-column: 3 / -1;
        grid-row: 1 / 5;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    #all-songs {
        grid-row-start: 11;
        padding: 0;
    }

    h2 {
        font-size: 1.75vmax;
    }
}