/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    background-image: url('cross.jpg');
    background-position: center 75%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Cinzel', serif;
    color: white;
}

/* Text Overlay Container */
.content {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    z-index: 10;
}

/* Glowing Text Styles */
.verse {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 215, 0, 0.3);
}

.reference {
    font-size: 1.6rem;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        background-position: center bottom;
    }

    .content {
        top: 35%;
        width: 98%;
    }

    .verse {
        font-size: 1.85rem;
    }

    .reference {
        font-size: 1.2rem;
    }
}