html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
}

body{
	font-family: 'DotGothic16', sans-serif;
}

.heading{
	text-align: center;
	font-size: 3rem;
	font-weight: 400;
}

.button{
	width: 200px;
	display: block;
	margin: 20px auto;
	font-weight: 400;
	font-family: 'DotGothic16', sans-serif;
	border: 1px solid black;
	background: yellow;
}
.button:hover{
	background: orange;
}

#container{
	width: 600px;
	height: 600px;
	margin: 0 auto;
	border: 1px solid rgba(39,41,43,0.1);

	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: .0001rem;
}

.row{
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap:  .0001rem;
}

.col{
	width: .0001rem;
	background-color: rgba(39,41,43,0.03);
  border: 1px solid rgba(39,41,43,0.1);
	flex: 1;
}
