body {
    background-image: url(/images/background_new.jpg);
    background-position: center;
    background-size: cover;
    font-family: Arial, sans-serif;
    height: 100vh;
}

.event-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.poster {
    width: 100%;
    max-width: 400px;
    margin-right: 20px;
}

.info {
    text-align: center;
}

.info h1 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.info p {
    font-size: 1.2rem;
    color: #555;
}

.btn-group {
    margin-top: 20px;
}

.btn-group .btn {
    margin: 0 5px;
    font-size: 1rem;
    padding: 10px 20px;
}

.button1 {
    background-image: linear-gradient(#4632A4, #122470);
    border: none;
    width: 28%;
    height: fit-content;
}

.button2 {
    background-image: linear-gradient(#E7B675, #A07548);
    border: none;
    width: 28%;
    height: fit-content;
}

.button3 {
    background-image: linear-gradient(#122470, #4632A4);
    border: none;
    width: 28%;
    height: fit-content;
}

.q-head {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    color: #111010;
}

.powered {
    font-size: 24px;
    font-weight: 100;
    text-align: center;
}

.glow-on-hover {
    border: none;
    outline: none;
    color: #fff;
    background-image: linear-gradient(#4632A4, #122470);
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#4632A4, #122470);
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}