*{
    margin: 0;
    padding: 0;
	box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background-image: url("Bilder/background.webp");
    background-size: cover;
    background-repeat: no-repeat;
	
    display: flex;
    justify-content: center;


}

.bild {
    width: 250px;
    height: 250px;
	margin-top: 100px;
}


@media (orientation: portrait) {
    body {
      background-position: 50% 50%;
    }
}