/* Reset some default styles for better consistency */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    background: transparent;
    color: #000;
    overflow: hidden;
    margin: 0;
}

.neon-container {
    position: relative;
}

header {
    background-color: black;
    color: #9900cc;
    text-align: center;
    padding: 20px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #9900cc;
}

.logo {
    text-align: center;
}

.logo img {
    width: 100px; /* Adjust the size as needed */
}

main {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: transparent;
    color: #000;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 20px;
    background: transparent;
    color: #000;
}

/* Neon Background with Color Palette */
.neon-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle, #6e0080, #9900cc, #000066, #9966cc);
    background-size: 200% 200%;
    animation: gradient 5s linear infinite;
}

/* Add this CSS to style the carousel */
.instagram-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    display: flex;
    overflow: hidden;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 100%;
    transition: transform 0.5s ease;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Style arrows for navigation (optional) */
.carousel-nav {
    text-align: center;
    margin-top: 10px;
}

.carousel-nav button {
    background: #333;
    color: #fff;
    border: none;
    padding: 5px 10px;
    margin: 0 5px;
    cursor: pointer;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    transform: scale(0);
    animation: ripple 0.5s linear;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
