body {
    background: #820000;
    background: radial-gradient(circle,rgba(130, 0, 0, 1) 0%, rgba(55, 0, 0, 1) 100%);
}
.content {
    display: flex;
    flex-direction: row;
}
.wrap-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35vw;
    max-height: 100vh;
}

.wrap-social > .title {
    font-size: 2rem;
}

.wrap-social > .social-video {
    max-width: 80%;
    border-radius: 15px;
    border-style: solid;
    border-width: 3px;
    border-color: white;
    margin: 3vh 0vw;
}

.wrap-social > .wrap-social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3vh 0vw;
    width: 100%;
}

.wrap-social > .wrap-social-links > .social-links {
    margin: 1vh 0vw;
    padding: 2vh 1vw;
    max-width: 80%;
    border-radius: 150px;
    border-style: solid;
    border-width: 3px;
    border-color: white;
    font-weight: bold;
}

.media-player {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30vw;
}

.media-player > img {
    width: 60%;
    align-self: center;
    border-radius: 15px;
    border-style: solid;
    border-width: 3px;
    border-color: white;
    margin: 6vh 0 5vh 0;
}

.media-player > p,.media-player > div {
    margin-left: 5vw;
    margin: 0.5vh 5vw
}
.media-player > p:hover, .media-player > img:hover {
    #cursor: pointer;
}

.timeline-container {
    display: flex;
}

.timeline-container > .timer {
    width: 30px;
}

.timeline-container > .timeline {
    height: 1vh;
    margin: 0 1vw;
    min-width: 70%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0) 25%);
    border-radius: 15px;
    border-style: solid;
    border-width: 3px;
    border-color: white;
}

.buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 3vh;
}

.buttons-container > i, .play-button>i {
    font-size: 2rem;
    margin: 0 1vw;
}
.buttons-container > i:hover, .play-button>i:hover {
    cursor: pointer;
}

.fa-play {
    display: none
}

.wrap-song {
    overflow-y: scroll;
    max-height: 100vh;
    width: 35vw;
    scrollbar-width: thin;
    scrollbar-color: #acacac transparent;
}
.wrap-song > .song {
    margin: 2vh 0;
    display: flex;
}

.wrap-song > .song:hover{
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
}

.wrap-song > .song[selected]{
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

.wrap-song > .song[selected]:hover{
    background-color: rgba(255, 255, 255, 0.20);
}

.wrap-song > .song > img{
    width: 75px;
    height: 75px;
    margin-right: 1.25vw;
    border-radius: 15px;
    border-style: solid;
    border-width: 2px;
    border-color: white;
}

.wrap-song > .song > .detail > p {
    margin: 0.75vh 0
}
.wrap-song > .song > .detail > .title {
    font-weight: bold;
}
#visualizer_wrapper {
    text-align: center;
}

canvas {
    background-color: transparent;
}