I'm currently working on a website using the React library. While I have made progress, I am stuck on how to adjust CSS properties that are interdependent. Specifically, I need help removing the blur filter from my text area .mirror-container
which is affected by the background .home-header
.
The current code snippet is as follows:
.home-header {
height: 55vh;
width: 100%;
align-items: center;
justify-content: center;
display: flex;
position: absolute;
z-index: -1;
background: url("./assets/images/bg.jpeg") ;
background-position: center center;
background-repeat: no-repeat;
filter: blur(3px);
background-position-y: 80%;
}
.mirror-container {
width: 50rem;
height: 85%;
box-shadow: 0 5px 25px rgba(0,0,0, .5);
color: #000;
margin-top: 8rem;
border-top: 1px solid white;
border-right: 1px solid white; // HERE NEED TO BE WITHOUT BLUR
}
Furthermore, I would like guidance on adding a shadow effect at the bottom of an image for smooth transitions between backgrounds. Should I use a shadow wave PNG or apply another technique?
Thank you in advance.