
#app-container {
    justify-content: center;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    width: 50%;
    margin-left: 25%;
}

.song .left {
    margin: 10px;
}
.song .right {
    margin: 10px;
}

.song {
    flex-direction: row;
    display: flex;
    width: 100%;
    background-color: #333;
    margin: 10px;
    transition: background-color 0.25s;
    border-radius: 10px;
}

.song .title {
    margin-bottom: 10px;
    font-weight: 900;
    font-size: 25px;
}
.song .artist {
    font-weight: 100;
    font-size: 20px;
}
.song .cover-image img {
    width: 100px;
    border-radius: 5px;
}

a {
    display: flex;
    align-items: center;
    width: 100%;
}

.song:hover {
    background-color: #555;
}

#error {
    text-align: center;
}