18 lines
372 B
SCSS
18 lines
372 B
SCSS
|
.banner {
|
||
|
min-height: 33vh;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
//background-attachment: fixed;
|
||
|
font-size: 115%;
|
||
|
background-position: center;
|
||
|
background-size: cover;
|
||
|
background-repeat: no-repeat;
|
||
|
background-attachment: fixed;
|
||
|
h1 {
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
text-align: center;
|
||
|
word-break: break-all;
|
||
|
}
|
||
|
}
|