body {
    margin: 0 !important;
    overflow: hidden !important;
    height: 100vh;
    background: black;
}

.starting-screen {
    z-index: 100;
    height: 100vh;
    width: 100%;
    position: fixed;
    background: black;
    top: 0;
    visibility: hidden;
}

.splash-screen-logo{
    margin-top: 200px;
    width: 140px;
    border-radius: 8px;
    padding: 10px;
}

.splash-screen-text{
    color: white;
    font-size: 23px;
}

.splash-screen{
    position: fixed;
    text-align: center;
    background: black;
    font-family: cursive;
    height: 100vh;
    width: 100%;
    z-index: 10;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

.splash-screen-inner-text{
    display: inline;
    font-weight: bold;
    font-size: 28px;
    font-family: cursive;
}

.glightbox_video {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.outer_circle {
    stroke-width: 3;
    stroke-dasharray: 410;
    stroke-dashoffset: 0;
    stroke-linecap: square;
    transition: all .4s ease-out;
}

.glightbox_video:hover .outer_circle {
    stroke-dashoffset:410;
    transition: stroke .7s .4s ease-out, stroke-dashoffset .4s ease-out;
    cursor: pointer;
}

.glightbox_video:hover
.inner-circle {
    fill: #2177b8;
    transition:fill .4s .3s ease-out;
    cursor: pointer;
}

.glightbox_video:hover
.play{
    fill: white;
    transition:fill .4s .3s ease-out;
    cursor: pointer;
}

.hide {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s linear, visibility 0s 0.5s;
}

.show {
    opacity: 1 !important;
    visibility: visible;
    transition: opacity 0.6s linear, visibility 0s 0s;
}

#main-menu {
    background-image: url('../assets/img/menu/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh; 
    position: absolute; 
    top: 0;
    left: 0;
    opacity: 0;
}

#songs-holder {
    margin: 2vw;
    background: rgba(0, 0, 0, 0.3);
    padding: .5vw;
    border-radius: .8vw;
    overflow: auto;
    height: 90vh;
}

#songs-holder::-webkit-scrollbar {
    width: .4vw 
}

#songs-holder::-webkit-scrollbar-track {
    background: black;       
}

#songs-holder::-webkit-scrollbar-thumb {
    background-color: darkkhaki;    
    border-radius: 2vw;      
}

.card {
    border: .1vw solid darkkhaki;
    width: 13vw;
    height: 19vw;
    display: inline-block;
    background: black;
    margin-left: 1vw;
    margin-right: 1vw;
    margin-bottom: 1vw;
    margin-top: 1vw;
    border-radius: .4vw;
    cursor: pointer;
    transition: all .2s linear;
}

.card:hover {
    transform: scale(1.03);
    filter: drop-shadow(3px 4px 6px #d5cd69);
}

.card-img {
    height: 40%;
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background-position: center;
}

.card-title {
    font-family: 'Allura', cursive;
    color: white;
    text-align: center;
    margin-top: .5vw;
    font-size: 1.5vw;
    white-space: nowrap;
}

.card-subtitle {
    font-family: 'Allura', cursive;
    color: burlywood;
    font-size: 1.4vw;
    text-align: center;
    margin-top: .2vw;
}

.card-mistakes {
    color: rgb(185 37 37);
    font-family: cursive;
    font-size: 1.1vw;
    margin-top: 0.4vw;
    text-align: center;
}

.progress-bar {
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    background: radial-gradient(closest-side, black 80%, transparent 88% 100%), conic-gradient(aqua 0%, rgb(49, 38, 39) 0);
}

.progress-number {
    color: #d5cd69;
    font-size: 1.2vw;
    text-align: center;
    top: 26%;
    position: relative;
    font-family: cursive;
}

.opacity-0 {
    opacity: 0 !important; 
}
