/* CSS */
* {margin: 0; padding: 0; box-sizing: border=box;}


/* main-wrapper */

div.main-wrapper
{
	display: block;
	margin: 10px
}

/* header */

header.header
{
	margin-bottom: 40px;
}

header.header div, div.header-help-stats-settings
{
	display: flex;
	justify-content: space-between;	
}

header.header div div
{
	display: inline-block;
	justify-content: space-between;
}
div.header-hamburger
{
	padding-right: 90px;
}

div.header-wordle
{
	font-family: "Georgia";
	font-size: 36px;
	font-weight: bold;
}

/* main */

main
{
	text-align: center;
	margin-bottom: 40px;
}

main.main-rows div div
{
	border: 2px solid #cccccc;
	display: inline-block;
	text-align: center;
	width: 50px;
	height: 50px;
	margin: 3px;
}

/* section */

section
{
	text-align: center;
}

section.letters div div
{
	border-style: none;
	display: inline-block;
	box-sizing: border-box;
	text-align: center;
	border-radius: 7px;
	background-color: #e7e7e7;
	width: 50px;
	height: 60px;
	padding: 15px;
	margin: 3px;
	font-size: 24px;
}
 div.letters-enter, div.letters-backspace
 {
	width: 75px;
	font-size: 16px;
 }

@media (max-width: 700px)
{
	header.header, main
	{
		margin-bottom: 35px;
	}


	section.letters div div
	{
		width: 40px;
		height: 48px;
		padding: 12px;
		margin: 2px;
		font-size: 20px;	
	}

@media (max-width: 550px)
{
	header.header, main
	{
		margin-bottom: 30px;
	}

	section.letters div div
	{
		width: 32;
		height: 38.4px;
		padding: 10px;
		margin: 1px;
		font-size: 16px;	
	}