body {
    background: #fff;
}
p {
    font-size: 1.1em;
}
.main-body {
    margin-left: 5%;
    margin-right: 5%;
    background: #fff;
    border-radius: 0 0 10px 10px;
    //border: 1px solid #999;
    padding: 15px;
    //box-shadow: 0 0 5px;
}
.main-nav-container {
    margin-bottom: 51px;
}
.checklist {
    list-style-type: none;
}
.centerText {
    text-align: center;
}
.boxed {
    background: #69e;
    color: #fff;
    border-radius: 10px;
    padding: 0 10px;
    min-height: 240px;
    margin: 1px 5px;
}
.roundCorner {
    border-radius: 4px;
}

.container {
  display: flex;
  flex-wrap: wrap;
}

.container {
  display: flex;
  flex-direction: row;
}
.column {
  flex: 1;
  margin: 10px;
  padding: 20px;
}
.centered-div {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.text-container {
  text-align: center;
  margin-top: 10px; /* add some space between the image and the text */
}
.row100 {
  width: 100%;
}
.textLeft {
  text-align: left;
}
.borderImg {
  border: 1px #000 solid;
  border-radius: 20px;
}
.column.centered-div {
  font-size: 1.05em;
}

.fade-image {
  animation: fade 3s infinite; /* adjust the duration and timing function as needed */
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
