@font-face {
    font-family: 'punk kid'; 
    src: url('punk kid.ttf'); 
    font-weight: normal;
    font-style: normal;
}
body {
  background-color: black;
  color: black;
  font-family: Verdana;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'punk kid', sans-serif;
}

/* Banner Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #fff;
}

.banner {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    background-image: url('grunge-bg.jpg'); /* Replace with your grunge background image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.banner-content {
    z-index: 2;
    color: black;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
}

.title {
    font-size: 4rem; /* Huge title */
    font-family: 'punk kid';
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: glitch 3s infinite;
}

.tagline {
    font-size: 1.5rem;
    font-family: 'Courier New', Courier, monospace;
    font-style: italic;
    color: #dcdcdc;
}

/* Glitch Effect */
@keyframes glitch {
    0% {
        text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.7), -2px -2px 3px rgba(255, 0, 0, 0.8);
    }
    25% {
        text-shadow: -2px -2px 3px rgba(0, 0, 0, 0.7), 2px 2px 3px rgba(0, 255, 0, 0.8);
    }
    50% {
        text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.7), -2px -2px 3px rgba(0, 0, 255, 0.8);
    }
    75% {
        text-shadow: -2px -2px 3px rgba(0, 0, 0, 0.7), 2px 2px 3px rgba(255, 255, 0, 0.8);
    }
    100% {
        text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.7), -2px -2px 3px rgba(0, 255, 255, 0.8);
    }
}