@import url("https://fonts.googleapis.com/css?family=Roboto:400,300");
* {
    box-sizing: border-box;
}

body,
html {
    padding: 0;
    margin: 0;
    height: 100%;
    font-family: Roboto, sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e1e1e;
}

.Player {
    width: 300px;
    height: 425px;
    box-shadow: 0 0 5px #bbb;
}

.Player__cover {
    width: 300px;
    height: 300px;
    background-image: url("../img/comp_320.jpg");
}

.Player__lyrics {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.Player__lyrics .line {
    display: flex;
    margin-bottom: 20px;
    width: 90%;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 3px;
    padding: 8px 10px;
    font-size: 13px;
    line-height: 16px;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.Player__track {
    width: 0%;
    height: 3px;
    background-color: #16a085;
}

.Player__details {
    padding: 12px 20px;
}

.Player__details .title {
    text-align: center;
    font-size: 20px;
    color: white;
}

.Player__controls {
    display: flex;
    width: 100%;
    margin-top: 3px;
    justify-content: center;
    align-items: center;
}

.Player__controls .icon {
    cursor: pointer;
    font-size: 36px;
    -webkit-user-select: none;
    user-select: none;
}

.Player__controls .icon.disabled {
    color: #aaa;
    cursor: default;
}

.Player__controls .icon.play {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 54px;
    color: #59fef8ca;
}