/* Base Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #000000;
    --accent-color: #336699;
    --text-color: #e0e0e0;
    --hover-scale: 1.2;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    font-family: 'Times New Roman', serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;
}

details summary{
  margin: -12px;
}

details summary::marker {
  content: "";
}

/* Main Content */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Image Section */
.image-container {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.band-image {
    width: 100%;
    height: auto;
    filter: grayscale(30%) contrast(1.2);
    transition: transform 0.9s ease;
}

.band-image:hover {
    transform: scale(1.02);
}

/* Text Section */
.text-container {
    text-align: center;
    margin-bottom: 40px;
}

.band-text {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
    transition: all 0.9s ease;
}

.band-text:hover {
    transform: scale(var(--hover-scale));
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.8);
}

.band-text span {
    display: inline-block;
    transition: all 0.2s ease;
}

.band-text span:hover {
    transform: scale(1.5);
    filter: drop-shadow(0 0 5px var(--accent-color));
}

/* Footer */
footer {
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: var(--secondary-color);
    margin-top: auto;
}

.footer-text {
    font-size: 1rem;
    color: var(--text-color);
}

.footer-text a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.9s ease;
}

.footer-text a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .band-text {
	font-size: 2rem;
    }

    .image-container {
	border-width: 2px;
    }
}

@media (max-width: 480px) {
    .band-text {
	font-size: 1.5rem;
    }

    .container {
	padding: 10px;
    }
}

