42 lines
597 B
CSS
42 lines
597 B
CSS
body
|
|
{
|
|
background-color: #FFE49F;
|
|
color: #E07A31;
|
|
}
|
|
|
|
.main-title
|
|
{
|
|
font-family: "League Spartan Black";
|
|
font-size: 200px;
|
|
display: flex;
|
|
text-align: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 60%;
|
|
height: 200%;
|
|
z-index: 100;
|
|
position: relative;
|
|
}
|
|
|
|
body::before,
|
|
body::after {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
content: '';
|
|
width: 2048px;
|
|
height: 2048px;
|
|
z-index: 50;
|
|
opacity:100%;
|
|
}
|
|
|
|
body::before {
|
|
background: url("noise-texture.svg");
|
|
mix-blend-mode: soft-light;
|
|
}
|
|
|
|
|
|
|
|
|