h1 {
font-size: 2em;
font-weight: bold;
width: 20em;
margin: 1em auto 1em auto;
}

h2 {
	font-weight: bold;
	font-size: 2em;
}

.container {
  display: flex; /* Make the container a flexbox container */
  flex-direction: column; /* Stack elements vertically */
  align-items: center; /* Center elements horizontally within the container */
  margin: 0 auto; /* Center the container horizontally on the page */
  padding: 20px; /* Add some padding for spacing */
  text-align: center;
}

.bordered-box {
  border: 5px solid black; /* Thick black border */
  padding: 15px; /* Add padding inside the box */
  margin-top: 20px; /* Add space between the text and the box (optional) */
  text-align: center;
}


ul {
  list-style: none;	
  font-weight: bold;
  font-size: 2em;
}