.activities {
  display: flex;


}

#activitiesContainer {
  display: flex;
  flex-direction: column;
}

h2 {
  text-align: center;
}

.colored-link {
  color: blue;
  text-decoration: underline;
  font-weight: bold;
  display: inline-block;
}



.flex-container ol li {
  list-style-type: none;
}

.year-round-act ol li::before {
  font: var(--fa-font-solid);
  content: "\f1bb" " ";
}

.winter-act ol li::before {
  font: var(--fa-font-solid);
  content: "\f2dc" " ";
}

.workshop-act ol li::before {
  font: var(--fa-font-solid);
  content: "\f0c3" " ";
}

.flex-container {
  width: 50%;
  margin: 1em;
  border-radius: 8px;
  /* box-shadow: 0px 4px 8px rgba(128,128,128, 0.2); */
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
  font-size: 1.5vw;

  background-color: rgb(249, 240, 236);
}

.flex-container:hover {
  cursor: pointer;
  transform: translateY(-5px);
}

.flex-container h2 {

  /* color: #fff; */
  margin: 0;
  padding: 0.7em;
  font-size: 2vw;
  text-align: center;
  border: 0;
}


.activity-description {
  padding: 1em;
}

.flex-container img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 760px) {
  .activities {
    flex-direction: column;
  }

  .flex-container {
    width: 97%;
  }

  .flex-container h2 {
    font-size: 5vw;
  }

  .activity-description {
    font-size: 3vw;
  }

  .activity-description ol {
    padding: 2em;
    padding-top: 0;
  }

  .text-flex {
    order: 1;
  }

  .image-flex {
    order: 2;
  }
}