
main section {
    width: 100%;
    object-fit: contain;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    height: 100%;
    align-self: start;
    margin: 0;
}

main section p:nth-of-type(2) {
    padding-top: 1em;
}
 
main section ul img {
    object-fit: contain;
    height: 20vh;
}

main section ol {
    padding: 2em;
    list-style: outside;
    line-height: 1.5em;
}

main section ol li:nth-of-type(1) {
    padding-top: 0;
}

main section ol li {
    padding-top: 1em;
}

section ul {
  display: flex;

  list-style: none;
  
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-snap-stop: always;
  transition: ease-in;

  anchor-name: --my-carousel;
  
  scroll-marker-group: after;
}


main section ul li {
  display: flex;
  justify-content: center;

  flex: 0 0 100%;
  
  scroll-snap-align: center;
}

main > section ul li img {
    border: none;
}