/*
* Copyright (c) ArSysOp 2020-2026
* 
* ArSysOp and its affiliates make no warranty of any kind
* with regard to this material. 
* 
* ArSysOp expressly disclaims all warranties as to the material, express, 
* and implied, including but not limited to the implied warranties of 
* merchantability, fitness for a particular purpose and non-infringement of third 
* party rights. 
* 
* In no event shall ArSysOp be liable to you or any other person for any damages, 
* including, without limitation, any direct, indirect, incidental or consequential 
* damages, expenses, lost profits, lost data or other damages arising out of the use, 
* misuse or inability to use the material and any derived software, even if ArSysOp, 
* its affiliate or an authorized dealer has been advised of the possibility of such damages. 
*
*/

body {
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 50% 1fr;
	justify-items: center;
}

@media (max-width: 600px) {
	body {
		grid-template-columns: 10px auto 10px;
	}
}

main {
	align-self: center;
	justify-self: center;
	grid-column: 2 / 3;
}

footer {
	justify-self: center;
	grid-column: 1 / 4;
}