body {
    font-family: Lato, Calibri, Arial, sans-serif;
    background-color: #000;
    color: #FFF;
    text-align: center;
    padding-top: 20px;
    margin: 0;
}



.heading {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.video-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 50px 20px;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
}

.video-responsive iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: none;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.video-item {
    max-width: calc(50% - 20px); 
    margin: 10px;
    flex: 1; 
}

.music-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 80%;
    margin-left: 10%; 
    padding: 0 0 50px 0;  
}

.animate-music {
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

.glitch {
    animation: glitch 0.2s linear;
}

@keyframes glitch {
    0%, 100% {
        transform: translate(0, 0);
        color: white; 
        text-shadow: none; 
        border-color: transparent; 
    }
    20% {
        transform: translate(-2px, 2px);
        color: red; 
        text-shadow: 0 0 10px red;
        border-color: red; 
    }
    40% {
        transform: translate(2px, -2px);
        color: blue; 
        text-shadow: 0 0 10px blue;
        border-color: blue; 
    }
    60% {
        transform: translate(-2px, 2px);
        color: white; 
        text-shadow: none; 
        border-color: transparent; 
    }
    80% {
        transform: translate(2px, -2px);
        color: red; 
        text-shadow: 0 0 10px red;
        border-color: red; 
    }
}

.video-responsive, .spotify {
    border: 1px solid transparent; 
}

.video-responsive.glitch-border,
.spotify.glitch-border {
    border: 10px solid transparent;
    animation: glitch-border 0.2s linear;
}

@keyframes glitch-border {
    0%, 100% {
        border-color: transparent; 
    }
    20% {
        border-color: red; 
    }
    40% {
        border-color: blue; 
    }
    60% {
        border-color: transparent; 
    }
    80% {
        border-color: red; 
    }
}

.instagram-link a {
    margin: 0 0 240px 0;
    color: white; 
    text-decoration: none; 
}

.instagram-link a:hover {
    color: lightgray; 
}

.instagram-link i {
    font-size: 24px; 
    margin-right: 8px; 
}


@media (max-width: 768px) {
    .video-grid {
        flex-direction: column; 

    }

    .video-item {
        max-width: 100%; 
        margin: 110px 0; 
    }

    .music-box {
        margin-top: 80px;
    }
    .video-wrapper{
        margin-bottom: -140px;
    }
}

.logo {
    width: 300px; 
    height: auto; 
    margin: 20px auto; 
    display: block;
}



.logo.glitch {
    animation: glitch 0.2s linear;
}