.scrollbox {
    margin-left: auto;
    margin-right: auto;
    max-width: 350px;
    height: 265px;
    overflow-y: scroll;
    border-top: 2px solid rgb(0, 0, 0);
    border-left: 2px solid rgb(0, 0, 0);
    border-right: 2px solid rgb(0, 0, 0);
    border-bottom: 2px solid rgb(0, 0, 0);
}

.music {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 0.5fr;
    gap: 15px;
    grid-template-areas: ". .";
    justify-content: center;
    align-content: start;
    margin-left: 9px;
    margin-right: 9px;
    margin-bottom: 9px;
}

#song {
    text-decoration: underline solid;
}

.enav {
    font-family: "basiic";
    background: rgba(255, 255, 255, 1);
    border-top: 5px double rgb(0, 0, 0);
    border-left: 5px double rgb(0, 0, 0);
    border-right: 5px double rgb(0, 0, 0);
    border-bottom: 5px double rgb(0, 0, 0);
    margin-bottom: 10px;
    cursor: url("/cursors/cosmica/default.png"), auto;
    width: 190px;
}

.enav:hover {
    filter: invert(1);
}

.nav {
    font-family: "basiic";
    background: rgba(255, 255, 255, 1);
    border-top: 5px double rgb(0, 0, 0);
    border-left: 5px double rgb(0, 0, 0);
    border-right: 5px double rgb(0, 0, 0);
    border-bottom: 5px double rgb(0, 0, 0);
    margin-bottom: 10px;
    cursor: url("/cursors/cosmica/default.png"), auto;
    filter: drop-shadow(5px 5px rgba(0, 0, 0, 0.25));
}

@media (max-width: 600px) {
    .music {
        display: grid;
        grid-template-columns: 0.4fr;
        grid-template-rows: 0.9fr 0.9fr;
        gap: 10px 10px;
        grid-template-areas:
            "."
            ".";
        justify-content: center;
        align-content: center;
    }
    .scrollbox {
        min-width: 250px;
    }
}