@charset "utf-8";
/* 
	Author:		Eric Zimmer
	Date:		10/16/2023
	Purpose: 	This is the print stylesheet for the tic tac toe game.
	Filename:	print.css
*/

@media print {

    html {
        color: black !important;
        background-color: white !important;
        accent-color: black !important;
    }

    input[type="checkbox"]:checked {
        accent-color: black !important;
    }    

}