@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Inter', sans-serif;
}
body {
	margin: 0;
	padding: 0;
      background-color: #222;
	text-align: center;
}

header {
	background-color: #333;
	color: #fff;
	padding: 20px;
}

header h1 {
	font-weight: bold;
	margin: 0;
}

main {
	margin: 20px;
      color: #fff;
	text-align: left;
}

ol {
	list-style-type: decimal;
	padding-left: 20px;
}

footer {
	background-color: #333;
	color: #fff;
	padding: 1rem;
      position: absolute;
      bottom: 0em;
      margin: 0;
	width: 100%;
      height: 10%;
}

.instruction {
    font-weight: bold;
    text-align: center;
}

.big {
    font-weight: bold;
    text-align: center;
    font-size: 2em;
    transition: 0.5s;
}
.big:hover { font-size: 2.3em; transition: 0.5s; }
