﻿body {
}
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;
}

    .background-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        z-index: -1;
    }
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: blink 2s infinite; /* Adjust the duration as needed */
    /* Other styling properties */
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;*/
    /* Other styling properties */
/*}*/

.content {
    z-index: 1; /* Ensure the content is above the background */
}

.Content-text {
    color: #fff; /* Adjust text color for visibility */
    text-align: center;
}
