        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: "Merriweather", serif;
        }
        
        .navbar-expand-lg .navbar-collapse {
            justify-content: end;
        }
        
        header a.nav-link {
            color: #000;
        }
        
        .logo {
            width: 60px;
        }
        
        .logo img {
            width: 100%;
        }
        
        .banner_box {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        
        .banner_box h1 {
            color: red;
            font-weight: 600;
            font-size: 60px;
        }
        
        .marquee-container {
            overflow: hidden;
            position: relative;
            padding: 10px;
            min-height: 100px;
        }
        
        .marquee {
            width: 100%;
            display: inline-block;
            white-space: nowrap;
            position: absolute;
            will-change: transform;
            animation: marquee 10s linear infinite;
            font-size: 45px;
            color: red;
        }
        
        @keyframes marquee {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        /* Pause the animation on hover */
        
        .marquee-container:hover .marquee {
            animation-play-state: paused;
        }
        
        img {
            width: 100%;
        }
        
        .Upcoming .content {
            margin: 20px 0;
        }
        
        .Upcoming .content p {
            margin: 20px 0;
            font-size: 15px;
        }
        
        .Upcoming h2 {
            color: red;
        }
        
        .Audition a {
            display: flex;
            min-height: 300px;
            justify-content: center;
            align-items: center;
            color: #fff;
            border-radius: 10px;
            transition: all 0.5s ease-in-out;
            position: relative;
            margin: 20px 0;
        }
        
        .Audition a h4 {
            z-index: 9;
        }
        
        .Audition a::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: #00000036;
        }
        
        .Audition a:hover {
            transform: scale(1.1);
        }
        
        .Audition {
            margin: 40px 0;
        }
        
        #auditionbtn a {
            width: 100%;
            font-size: 30px;
            min-height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .footer-logo {
            width: 150px;
        }
        
        section.page_title {
            background-color: #000;
            color: #fff;
            min-height: 300px;
            display: flex;
            align-items: center;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .user_response {
            display: flex;
            justify-content: center;
            padding: 30px 0;
            border: 1px solid;
            margin: 35px 0;
            min-height: 300px;
            background-position: bottom;
            background-size: cover;
            align-items: center;
            font-size: 25px;
            font-weight: 700;
        }
        
        section.date_response {
            background: linear-gradient(158deg, #ffcf2d, #ff7c5e);
            padding: 30px 0;
            margin-bottom: 50px;
        }
        
        .date_response h4 {
            text-align: center;
            line-height: 40px;
        }
        
        .date_response h6 {
            text-align: center;
            background: yellow;
            width: fit-content;
            margin: auto;
            padding: 20px;
            margin-top: 20px;
        }