21 lines
372 B
CSS
21 lines
372 B
CSS
@font-face {
|
|
font-family: Lobster-Regular;
|
|
src: url(/fonts/Lobster-Regular.ttf);
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: Lobster-Regular;
|
|
box-sizing: border-box;
|
|
background-image: url(/ostsee.jpg);
|
|
background-size: cover;
|
|
margin: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
top: 0;
|
|
position: absolute;
|
|
} |