.music_tile {
    font-family: "Noto Sans JP", sans-serif;

    display: flex;
    flex-direction: column;
    max-width: 300px;
    margin: auto;

    .track_name {
        font-size: 1.2em;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .artist_name {
        font-size: 1em;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .album_name {
        font-size: 0.9em;
        color: #c1bfae;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    p {
        margin: 0;
    }

    p#musicStatus {
        text-align: center;
        margin-bottom: 20px;
    }

    hr {
        margin: 10px 0px;
        border: none;
        height: 1px;
        background-color: grey;
    }

    img {
        margin: 20px;
        border-radius: 10px;
        height: 260px;
        width: 260px;
        object-fit: contain;
    }
}