body {
    margin: 0;
    padding: 0;
    font-family: Montserrat,sans-serif;
    min-height: 100vh;
    overflow: hidden;
    min-height: 100vh;
    position: absolute;
    left: 0;
    width: 100%;
    background-attachment: fixed;
    user-select: none;
    -moz-user-select: none;
    -webkit-text-select: none;
    -webkit-user-select: none
}

h1, h2, h3, h4, h5 {
    color: white;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100vh;
}

.top-container {
    width: 450px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-elements {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90%;
    width: 90%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.blur {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.8px);
    -webkit-backdrop-filter: blur(6.8px);
    border: 1px solid rgba(255, 255, 255, 0.29);
}

#background-container {
    background: url('background.png') no-repeat center center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
}

#canvas {
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
}

#profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: .3s,transform .3s
}

#profile-pic:hover {
    border-radius: 30%;
    transform: scale(1.1)
}

.socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.social-icon {
    display: inline-block;
    font-size: 30px;
    margin: 0 15px;
    color: #fff;
    transition: color .3s,transform .3s
}

.glow {
    animation: glow 4s infinite
}

.zoom {
    transition: color .3s,transform .3s
}

.zoom:hover {
    color: #ffffff;
    transform: scale(1.1);
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(255,255,255,.7);
        opacity: 1
    }

    50% {
        text-shadow: 0 0 20px #fff;
        opacity: .9
    }

    100% {
        text-shadow: 0 0 10px rgba(255,255,255,.7);
        opacity: 1
    }
}

.bottom-container {
    width: 450px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.song-elements {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.song-image {
    width: 80px;
    height: 80px;
    border-radius: 15%;
    object-fit: cover;
    margin-right: 30px
}

.song-info {
    flex-grow: 1;
    text-align: left;
    display: flex;
    flex-direction: column
}

#song-progress {
    appearance: none;
    overflow: hidden;
    height: 15px;
    width: 150px;
    background-color: #686868;
    border: 1px solid #ccc;
    border-radius: 15px
}

#song-progress::-webkit-progress-value {
    background-color: #686868;
    border-radius: 15px
}

.progress {
    height: 25px;
    width: 100%;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.progress_text {
    margin: 10px;
    white-space: nowrap
}


#song-image {
    width: 100px;
    height: 100px;
    border-radius: 15%;
    margin: 25px;
}

.song-text {
    margin: 2px;
}

.song-right {
    flex-grow: 1;
    text-align: left;
    display: flex;
    flex-direction: column
}


.progress-bar {
    margin-top: -20px;
    display: inline-flex;
    align-items: center;
}

.song-progress {
    height: 25px;
    width: 100%;
}

.overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .97);
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    text-align: center;
}

.overlay.hide {
    opacity: 0;
    pointer-events: none;
}

.enter-overlay {
    transition: 0.5s ease-in-out;
}

.enter-overlay.zoom-in {
    transform: scale(1.2)
}
