﻿body {
}
.background-image {
    background-image: url('/Resources/bluerbackgroundimg.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 100vh; /* Adjust the height as needed */
    position: relative;
    /*filter: blur(5px);*/ /* Adjust the blur amount */
}

    .background-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        z-index: -1;
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */ /* Overlay color and transparency */
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    z-index: 1; /* Ensure the content is above the background */
}

.Content-text {
    color: #fff; /* Adjust text color for visibility */
    text-align: center;
}
