 body {
    margin: 0;
    background: url(winter.jpg) top center no-repeat;
    height: 100%;
    background-size: cover;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
    font-family: monospace;
}
    /* TEXT */
.content {
    margin-top: 15%;
    text-align: center;
    color: #000;
    font-size: xx-large;
	text-shadow: 5px 10px 20px #222;
}
hr {
    width: 30%;
}
img {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 7%;
}

    /* PROJEKT */
.projekt {
    text-align: center;
	margin-top: 250px;
}
ul li {
    font-size: 30px;
    display: inline-block;
}
ul li a {
    text-decoration: none;
    color: black;
    border:  2px solid black;
    padding: 10px 20px; 
    background: white;
}
ul li a:hover {
    color: white;
    background: black;
}

    /* SNÖ*/ 
.sno1 {
	background: url(sno.png);
	width: 100%;
	height: 930px;
	position: absolute;
	top: 0;
	left: 0;
	animation: ett 15s infinite linear;
	pointer-events: none;
}
@keyframes ett {
	0% {
		background-position: 0px 0px;
	}
	100% {
		background-position: 100px 750px;
	}
}
    
.sno2 {
	background: url(sno.png);
	width: 100%;
	height: 930px;
	position: absolute;
	top: 0;
	left: 0;
	animation: tva 15s infinite linear;
	pointer-events: none;
}
@keyframes tva {
	0% {
		background-position: 0px -100px;
	}
	100% {
		background-position: 0px 750px;
	}
}