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

html,
body {
  background: url("../images/whtbrck.gif");
}

body {
  display: flex;
  min-height: 100%;
  line-height: 1.5;
}

#sidePanel {
  flex-basis: 25%;
  line-height: 2.25;
  background: url("../images/turf.jpg");
  text-align: center;
  min-height: 100vh;
}

#sidePanel > h2 {
  color: #fd611a;
  text-decoration: underline;
}

#sidePanel > h2 {
    font-style: italic;
}

#sidePanel a {
  color: #fffff0;
}

.center {
  text-align: center;
}

a {
  text-shadow: 1px 1px 1px rgb(255, 255, 255);
}

hr {
    min-width: 100%;
}

#content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-left: 4rem;
  max-width: 50%;
}

#content ul > li {
  position: relative;
  /* text-indent: 1ch; */
  font-weight: 900;
  margin-top: 1rem;
}



#content ul > li::marker {
    content: url("../images/ball.gif")
}

#content ol > li {
    margin-left: 2rem;
}

#content li + p {
    text-align: center;
}


#imageContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
}


.title {
    text-decoration: underline;
    font-size: 2rem;
    padding: 1rem 0;
}

.info {
    color: #fd611a;
    font-weight: 600;
    padding-bottom: 1.5rem;
    text-align: center;
}