43 lines
641 B
CSS
43 lines
641 B
CSS
|
|
#background {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
|
|
background-color: black;
|
|
background-image: url(https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
|
|
opacity: 0.2;
|
|
|
|
filter: blur(5px);
|
|
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
|
|
z-index: 1;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
background-color: black;
|
|
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
min-height: 100vh;
|
|
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
main {
|
|
color: white;
|
|
font-family: sans-serif;
|
|
z-index: 2;
|
|
}
|
|
|
|
a {
|
|
color: aqua;
|
|
}
|