File size: 410 Bytes
f332108 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
#bg {
object-fit: cover;
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
z-index: -5;
}
.shadow-overlay {
position: fixed;
top: 0;
left: 0;
z-index: -4;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.4);
}
@media (max-width: 700px) {
.shadow-overlay {
background-color: rgba(0, 0, 0, 0.7);
}
} |