@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');

body {
    font-family: 'Tilt Neon', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    background-image: url('https://images.unsplash.com/photo-1579546929518-9e396f3a8034?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-attachment: fixed;
    color: #ecf0f1;
}

header {
    background-color: transparent;
    color: #ecf0f1;
    padding: 2rem 0;
    text-align: center;
    text-shadow: 0 0 10px #3498db, 0 0 20px #3498db, 0 0 30px #3498db, 0 0 40px #3498db;
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    from {
        text-shadow: 0 0 10px #3498db, 0 0 20px #3498db, 0 0 30px #3498db, 0 0 40px #3498db;
    }
    to {
        text-shadow: 0 0 5px #3498db, 0 0 10px #3498db, 0 0 15px #3498db, 0 0 20px #3498db;
    }
}

header h1 {
    margin: 0;
    font-size: 3.5rem;
}

main {
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
}

section {
    margin-bottom: 20px;
}

h2 {
    color: #3498db;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ecf0f1;
    position: fixed;
    bottom: 0;
    width: 100%;
}

a {
    color: #3498db;
}

h3 {
    color: #ecf0f1;
    margin-top: 15px;
    margin-bottom: 10px;
}

#events .events-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#events ul {
    list-style: none;
    padding-left: 0;
    flex: 1;
    min-width: 280px;
}

#events li {
    margin-bottom: 8px;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 12px;
    border-radius: 5px;
    border-left: 3px solid #3498db;
}

#gallery .gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

#gallery img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #3498db;
}