body {
    margin: 0;
    height: 100vh;
    display: flex; /* Helps center content if desired */
    justify-content: center;
    align-items: center;
    position: relative; /* Essential for z-index to work correctly */
}

.background-image-container {
    background-image: url('images/ozbathing.webp'); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: fixed; /* Fixes the background to the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Places the background behind other content */
}

.content {
    /* Styles for your content, e.g., text color, padding */
    color: white;
    text-align: center;
    padding: 20px;
    z-index: 1; /* Ensures content appears above the background */
}

h1 {
    font-size: 3.5rem;
    text-shadow: #000 1px 0 10px;
}

p {
    font-size: 2rem;
    text-shadow: #000 1px 0 10px;
}