body {
margin: 0;
height: 100vh; /* full høyde */
display: flex; /* bruk flexbox */
justify-content: center; /* horisontalt sentrert */
align-items: center; /* vertikalt sentrert */
background-color: white; /* valgfritt bakgrunnsfarge */
}
img {
max-width: 100%; /* skalere ned ved små skjermer */
height: auto;
}