/**
 * Stylesheet for Parallax Block
 *
 * @package ParallaxiumParallaxBlockForBlockEditor
 */

.pxplxblkfbe-parallax-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    padding: 40px;
}

.pxplxblkfbe-parallax-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.pxplxblkfbe-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pxplxblkfbe-parallax-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: #000;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
}