/* Global Isometric Perspective */
* {
box-sizing: border-box;
transform-origin: center;
}
/* Apply the isometric skew and scaling to all elements */
body, * {
transform: skewY(-10deg) ;
margin: 0;
padding: 0;
}
/* Alternate elements go in the opposite skew direction */
*:nth-child(odd) {
transform: skewY(10deg);
}