绿色基金是什么意思
```html
body {
margin: 0;
padding: 0;
display: flex;
justifycontent: center;
alignitems: center;
height: 100vh;
backgroundcolor: f3f3f3;
}
.content {
width: 80%;
maxwidth: 1200px;
textalign: center;
}
.title {
fontsize: 32px;
fontweight: bold;
color: 009933;
marginbottom: 20px;
}
.image {
position: relative;
display: inlineblock;
}
.image::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
backgroundimage: url('yourimageurl.jpg');
backgroundsize: cover;
backgroundposition: center;
filter: blur(8px);
zindex: 1;
}
.textoverimage {
position: absolute;
top: 50%;
left: 50%;
transform: translate(50%, 50%);
color: ffffff;
fontsize: 24px;
fontweight: bold;
textshadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}