body {
	font-family: monospace;
	font-size: 1em;
	margin: 0em;
	padding: 2em;
	min-height: 100vh;
    box-sizing: border-box;
	/*border: 1.5px solid black;*/
}

/* I forget why I did it this way and not just a border :/ */
body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    outline: 1.5px solid black;
    outline-offset: -1em;
    border: 1em solid white;
    pointer-events: none;
    z-index: 1;
}

body#heads .tails {
	display: None;
}
body#tails .heads {
	display: None;
}

img#tails, img#heads {
	max-width:45vw;
	max-height: 30vw;
}

img.emoji {
	height: 1.2em;
	line-height: 1em;
}

main {
	/*margin-left:1.4em;*/
}

li {

}

img.screenshot {
	max-height: 10vh;	
	float: right;
}

header h1 {
   margin-top: 0;
}

p, li {
    max-width: 80em;
}

.link:hover {
	filter: invert(.8);
}

@keyframes flickerAnimation {
    0%   { opacity:1; }
    50%  { opacity:0; }
    100% { opacity:1; }
    }
    .animate-flicker {
        animation: flickerAnimation .1s 3;
        animation-delay: 0s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

a#back {
    text-decoration: none;
    color: black;
    font-size: 1.5em;
    font-weight: bold;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    display: block;
}

star::after {
    content: "☕";
    /*content: "❁";*/
}

star {
    font-family: initial;
    filter: saturate(0);
    /*vertical-align: middle;*/
    line-height: 1em;
}

cat::after {
    content: "~~~ ╔͎═͓═͙╗ \A ~~~ ╚̨̈́═̈́﴾ ̥̂˖̫˖̥  ̂ )";
    /*content: "≋≋≋≋≋̯̫⌧̯̫(ˆ•̮ ̮•ˆ)";
    content: "•.,¸,.•*`•.,¸¸,.•*¯ ╭━━━━╮\A•.,¸,.•*¯`•.,¸,.•*¯.|:::::::::: /\\___/\\ \A•.,¸,.•*¯`•.,¸,.•* <|:::::::::(｡ ●ω●｡) ᵐᵉᵒʷ ᵐᵉᵒʷ ᵐᵉᵒʷ \A•.,¸,.•¯•.,¸,.•╰ * >し------し---Ｊ";*/
}

cat, .cat pre {
    font-family: serif;
    font-size: xx-large;
    white-space: pre;
}

.cat pre {
    margin: 0;
}

li > p {
    margin-bottom: 0;
}

/* css magic */
/*
#list star {
    display: inline-block;
    left: -1.1em;
    position: relative;
    width: 0;
    float: left;
}

#list p {
    padding-left: 2em;	
}
*/

/* add delay at the end of animation so you dont start while another div is going */

@font-face {
    font-family: "Arial";
    src: url(/site/Arial.ttf) format("truetype");
}

footer {
    position: fixed;
    z-index: 1;
    bottom: 0;
    display: flex;
    /* margin: auto; */
    width: 100%;
    left: 0;
    justify-content: end;
    padding: .95em;
    box-sizing: border-box;
}

footer div {
    padding-left: .5em;
    padding-right: .5em;
    padding-bottom: .05em;
    color:white;
    background-color: black;
    font-size: 0.7em;
    font-weight:bold;
}

footer div:first-child {
    text-align: right;
}

header {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

header h1 {
    margin-right: 1em;
    white-space: nowrap;
    margin-bottom: .5em;
}

.filter {
		position: absolute;
		pointer-events: none;
		width: 100vw;
		height: 100vh;
		top: 0;
		left: 0;
		display: none;

		+.off_white {
				background: #f5f3ef;
				z-index: 2;
				mix-blend-mode: multiply;
		}

		+.off_black {
				background: #0d0d0d;
				z-index: 2;
				mix-blend-mode: lighten;
		}
}



