23 lines
293 B
CSS
23 lines
293 B
CSS
.header {
|
|
position: relative;
|
|
height: 10em;
|
|
margin-bottom: 3.5em;
|
|
}
|
|
|
|
.header img {
|
|
filter: brightness(50%);
|
|
}
|
|
|
|
.textbox {
|
|
color: white;
|
|
position: absolute;
|
|
width: 100%;
|
|
top: 50%;
|
|
transform: translate(0%, -50%);
|
|
}
|
|
|
|
.textboxInner h1 {
|
|
font-size: 2.5em;
|
|
margin-bottom: 0;
|
|
}
|