body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.text-over-image {
    position: relative;
    background-image: url('background-images/Concert2.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    height: 400px;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.text-over-image h1, .text-over-image p {
    position: relative; /* This ensures text stays on top of the image */
    z-index: 1;
}

.text-over-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Optional overlay to make text more visible */
    z-index: 0;
}

.centered-content {
    text-align: center;
    max-width: 800px; /* Set a max-width to control the line length */
    margin: 0 auto; /* Center-align the container on the page */
}