body {
  background: green;
}
p {
  color: black;
  font-size:20px;
  text-align: center;
}
h1 {
  font-weight: bold;
  font-size:36px;
  text-align:center;
}
h2{
  font-weight:bold;
  font-size:30px;
  text-align:center;
}
h3{
  font-weight:bold;
  font-size:29px;
  text-align: center;

}
.container {
  display: flex; /* Makes the container a flex container */
  justify-content: center; /* Centers the content horizontally */
}
ul.myUL {
  display:flex;
  justify-content: center;
}

img {
  display: block;
  margin: auto;
  width: 50%;
}