html {
  box-sizing: border-box;
  font-size: 62.5%; 
  scroll-behavior: smooth; 
}

body {
  font-family: arail, helvetica, sans-serif;
  color: #333;
  font-weight: 300;
  line-height: 1.6; 
  margin: 0px;
  background: #800002;
}

.wrapper {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: 1fr;
	grid-template-areas:
	"header"
	"content"
	"footer";
	background-color: #800002;
	color: white;
	padding: 15px;
	justify-content: center;
	text-align: center;
}

.header {
	grid-area: header;
	position: center;
}

.content {
	grid-area: content;
	width: 100%;
	height: 100%;
	justify-content: center;
}

.footer {
	grid-area: footer;
	font-size: 20px;
}