.footerContainer {
  display: flex;
  justify-content: start;
  align-items: start;
  width: 100%;
  max-width: 850px;
  padding: 10px;
  box-sizing: border-box;
}

.footerText {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 0.65em;
  font-style: italic;
  color: #29323cff;
  line-height: 30px;
  text-align: center;
}

@media (max-width: 800px) {
  .footerContainer {
    padding: 5px;
  }

  .footerText {
    font-size: 14px;
  }
}

