.appContainer {
    position: relative; /* To position the overlay correctly */
    padding: 15%;
    background-image: url('/image/app.png');
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* border-radius: 25px; */
}
.appContainer::before {
    content: ''; /* Creates a pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);  /* Black overlay with 50% opacity */
    z-index: 0; /* Ensure the overlay stays behind the content */
    /* border-radius: 25px; */
}
.appContainer h1, .appContainer p{
    position: relative;
    z-index: 1; /* Ensure the text stays above the overlay */
    color: white; /*Set text color for readability*/
    justify-content: center;
    text-align: center;
    /*font-weight: bold;*/
    text-decoration: none;
}