@CHARSET "ISO-8859-1";

body {
    display: grid;
    place-items: center; 
}

img{
	width: 100px;
	height: 100px;
	display: block; 
	margin-left: auto; 
	margin-right: auto;
}

.instructions{
	width: 100%;
	max-width: 400px;
}

.inputField {
	box-sizing: border-box; 
	height: 88%; 
	width: 100%;
	margin: 1.5%; 
	padding: 0px;
	text-align: center;
	font-size: 60px;
	font-weight: bold;
	text-transform: uppercase;
	border-width: 1px;
}

.button {
	width: 40%;
	margin-left: 2%;
	margin-right: 2%;
	margin-bottom: 20px;
	border-radius: 10px;
	font-size: 20px;
}

.container {
  display: flex;          /* Enables Flexbox layout */
  justify-content: center; /* Centers horizontally along the main axis */
  align-items: center;    /* Centers vertically along the cross axis */

}