app.css (666B)
1 #app { 2 background: rgb(10, 10, 10); 3 height: 100vh; 4 width: 100%; 5 margin: 0; 6 padding: 0; 7 display: flex; 8 flex-direction: column; 9 justify-content: center; 10 align-items: center; 11 background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(0, 0, 0, 0.9)), 12 repeating-linear-gradient( 13 0, 14 transparent, 15 transparent 2px, 16 black 3px, 17 black 3px 18 ), 19 url("https://images.unsplash.com/photo-1506399558188-acca6f8cbf41?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=7118759521e3184778a3b5e010e202c6"); 20 background-size: cover; 21 background-position: center; 22 z-index: 1; 23 }