33 lines
535 B
CSS
33 lines
535 B
CSS
|
.jumbotron {
|
||
|
position: relative;
|
||
|
margin: 0;
|
||
|
width: 100%;
|
||
|
height: 30vh;
|
||
|
}
|
||
|
|
||
|
.jumbotron img.jumbotron-image {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
object-fit: cover;
|
||
|
filter: blur(1px) brightness(0.5);
|
||
|
}
|
||
|
|
||
|
.jumbotron .container {
|
||
|
position: relative;
|
||
|
z-index: 1;
|
||
|
display: grid;
|
||
|
place-items: center;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.jumbotron .container h1 {
|
||
|
font-size: 3rem;
|
||
|
font-weight: bold;
|
||
|
margin-bottom: 0;
|
||
|
color: var(--primary-color-text);
|
||
|
}
|
||
|
|