        /* Default styles for the eventscustom class */
        .eventscustom {
            position: absolute; /* Default position is absolute */
            /* Add other default styles here if needed */
        }

        /* Media query for responsive styles */
        @media only screen and (min-width: 320px) and (max-width: 768px) {
            /* Overriding styles for eventscustom class within the media query */
            .eventscustom {
                position: static; /* Override position to static */
                width: 95%;
                margin-top: 50px;
            }
        }