body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Carlito', sans-serif; /* Moved font-family here for global application */
    overflow-x: hidden; /* Prevent horizontal scrollbar if content is too wide */
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;

    /* --- TEST --- */
    background-image: url('../images/ascension_michael_01.png'); /* Path relative to the CSS file */
    opacity: 1 !important; /* Force opacity for testing */
    /* --- END TEST --- */
}

.content-container {
    position: relative; /* Ensure it's above the background */
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Make sure it takes at least the full viewport height */
    text-align: center;
    padding: 20px; /* Add some padding */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.bible-verse {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
    color: white;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.5em; /* Adjust as needed */
    line-height: 1.6;
}

.highlight {
    color: #FFD700; /* Example highlight color (gold) */
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .bible-verse {
        font-size: 1.2em;
    }
    .mobile-break {
        /* Styles for mobile-break if needed, by default <br> just breaks the line */
    }
}

/* If you uncommented the audio play button, you'd style it here */
/*
#play-music-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 10px 15px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
}
*/

