@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    /*font-weight: <weight>;*/
    font-style: normal;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 40%, rgba(205, 0, 0, 0.15) 100%);
}
*, *::after, *::before {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
}
.container {
    margin: auto;
    width: 100%;
    max-width: 840px;
    background-color: #181818;
    height: 100%;
}
.media-video {
    background: none;
    width: 100%;
    height: calc(50% - 55px);
}
.songs {
    width: 100%;
    height: 50%;
    overflow-x: auto;
    border: 1px solid #858585;
}
#iframe {
    width: 100%;
    height: 100%;
}
.song {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #858585;
    transition: background-color 0.3s ease-in-out, color, border-left 0.25s ease-out;
    border-left: 0px solid #d30f0f;
    color: #fff;
}
.song:hover {
    background-color: #000;
    border-left: 10px solid #d30f0f;
}
.actions span {
    font-size: 2.5em;
    font-weight: 700;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}
.song-info {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}
.song-info span:first-child {
    font-size: 1.5em;
    font-weight: 600;
}
.navbar {
    height: 55px;
    width: 100%;
    padding: 10px;
    background: rgb(242, 242, 242);
    background: -moz-linear-gradient(90deg, rgb(0 0 0) 0%, rgb(97 65 65) 50%, rgb(137 0 0) 100%);
    background: -webkit-linear-gradient(90deg, rgb(0 0 0) 0%, rgb(97 65 65) 50%, rgb(137 0 0) 100%);
    background: linear-gradient(90deg, rgb(0 0 0) 0%, rgb(97 65 65) 50%, rgb(137 0 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f2f2f2", endColorstr="#410000", GradientType=1);
    padding-bottom: 50px;
    height: 100px;
    margin-bottom: -45px;
}
.navbar img {
    height: 100%;
}