If your slide is fixed in the background, then it is
.slideshow {
position: fixed;
z-index: 0;
}
in your CSS.
Remove the position of it and leave the default that is relative and remove the z-index too (default is auto, which is stacking the elements in the order they are declared).
If you need more help, put your code to run so we can see the presentation.