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.
 
 
 

40 lines
714 B

body, html {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
#backgroundContainer {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
#backgroundFrame {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform: scale(2048/100); /* Skalieren auf 2048p */
transform-origin: 0 0; /* Die obere linke Ecke bleibt fixiert */
border: none;
}
#textOverlay {
position: absolute;
top: 50%;
left: 5%;
width: 50%;
height: 50%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: #ffffff;
font-size: 24px;
}