@font-face {
    font-family: LibreFranklin;
    src: url(./LibreFranklin.ttf);
}

body {
    line-height: 1.6;
    text-align: center;
    background-color: #a5a5bb;
    font-size: 1.1rem;
    margin: 0;
    /* margin-top: 2rem; */
    color: #333;
}

ul {
    list-style-position: inside;
	text-align: left;
}

main {
	text-align: center;
}

code {
    background-color: #f4f4f4;
    padding: 2px 5px;
    border-radius: 4px;
    font-family: monospace;
}

samp {
	background-color: #f4f4f4;
	display: block;
	width: 90%;
	min-height: 3.3em;
    border-radius: 4px;
	text-align: left;
	margin-left: calc(5% - 1em);
	padding-left: 1em;
	padding-right: 1em;
}

header {
    background-color: #342559;
    text-align: center;
    justify-content: center;
    padding: 1rem 0;
    padding-bottom: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

#header-text {
    color: #bbb;
}

footer {
    text-align: center;
    padding: 8px 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.9rem;
}

game {
	display: table;
	border-spacing: 0.5em;
	background-color: #EEF;
	border-radius: 0.5em;
	border: solid black 1px;
	position: relative;
	left: calc(50% - 11rem);
	margin-bottom: 1rem;
	/* margin-left: 5%; */
}

word {
	display: table-row;
	height: 1.8em;
}

letter {
	font-family: LibreFranklin;
	font-weight: 700;
	font-size: 2rem;
	display: table-cell;
	width: 1.8em;
	line-height: 1.8em;
	color: white;
}

.grey {
	background-color: #787C7E;
}

.yellow {
	background-color: #C9B458;
}

.green {
	background-color: #6AAA64;
}

.blank {
	color: #333;
	background-color: #333;
	user-select: none;
}