You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
437 B
26 lines
437 B
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
}
|
|
|
|
.background {
|
|
background: url('https://images.unsplash.com/photo-1556745757-8d76bdb6984b')
|
|
no-repeat center center/cover;
|
|
position: absolute;
|
|
top: -20px;
|
|
bottom: -20px;
|
|
left: -20px;
|
|
right: -20px;
|
|
z-index: -1;
|
|
filter: blur(20px);
|
|
}
|