
/* Sticky header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #fff; /* Adjust the background color as needed */
            z-index: 999; /* Ensure it's above other elements */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a shadow for better visibility */
        }
body {
            padding-top: 80px; /* Adjust according to header height */
        }

.cat-container {
    display: flex;
    padding: 10px;
    border-radius: 25px;
    font-weight: bold;
    color: #4942e4 ;
    background-color: #f3f3f3;   
}
 .cat-icon{
    display: flex;
    padding: 10px;
    border-radius: 25px;
    font-weight: bold;
    color: #fff ;
    background-color: #4942e4;   
}
ul.about-event{
    list-style: disc;
}
.reg-btn{
    margin-top: 50px;
    background-color: #4942e4;
    color: #fff;
    padding: 10px;
    height: 50px;
    width: 300px;
    border-radius: 5px;
    transition: 0.3s ease-in;
    font-weight: bold;
}
.reg-btn:hover{
    background-color: #f3f3f3;
    color: black;
}
