body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(6px);
    z-index: 0;
}

.background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.5); /* Semi-transparent white overlay */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
}


