/* Apply styles for landscape orientation */
@media screen and (orientation: landscape) {
	body {
		/* Rotate the entire page 90 degrees clockwise */
		transform: rotate(90deg);
		transform-origin: left top;
		width: 100vh;
		height: 100vw;
		overflow: hidden;
		position: fixed;
		top: 0;
		left: 0;
	}
}