<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*ZET LANDSCAPE OP MOBIEL OP ZWART*/
/*@media screen and (max-width: 896px) and (orientation: landscape) {

html, body{
margin: 0;
padding: 0;
background: black;
height: 100vh;
overflow: hidden;
}

body *{
display: none !important;
}

}
*/

/*ZET LANDSCAPE OP MOBIEL OP KLEUR*/
@media screen and (max-width: 896px) and (orientation: landscape){

html, body{
margin:0;
padding:0;
background:green;
height:100vh;
width:100vw;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
}

body::before{
content:"Deze website werkt alléén in portrait weergave.\A Draai je scherm a.u.b.";
color:white;
font-size:3.0rem;
text-align:center;
padding:1rem;
white-space:pre-line;
}

body *{
display:none !important;
}

}
</pre></body></html>