body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.parallax-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-layer {
    position: absolute;
    top: 50%; 
    left: 50%; 
    width: 120%;  
    height: 120%;
    background-image: url('https://azur.veehub.xyz/websitefiles/wall.jpg'); 
    background-size: cover;
    background-position: center;
    transform: translate(-50%, -50%); 
    filter: blur(4px);
}

.frosted-glass {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    max-width: 80%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    color: #fff;
    text-align: center;
    z-index: 4;
}


.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

h1 {
    font-size: 3rem;
}

p {
    font-size: 1.5rem;
}

