forked from dachan/dach
25 lines
373 B
CSS
25 lines
373 B
CSS
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
|
|
body{
|
|
background-image: url("background.jpg");
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: cover;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
color: whitesmoke;
|
|
margin: 0 auto;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
} |