/* Target the outermost div (2nd div directly inside main) */
main > div:nth-of-type(2) {
  color: white;
}

/* Target the inner div with fit-content styling */
main > div:nth-of-type(2) > div {
  width: fit-content;
  margin: 0 auto;
  display: block;
}

/* Target the ul to remove text-decoration */
main > div:nth-of-type(2) > div > ul {
  text-decoration: none;
  /* list-style: none;
  padding-left: 0; */
}