.footer {
  height: 80px;
  background-color: var(--navGrey);
  width: 100%;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--textGrey);
  font-family: 'Poppins', sans-serif;
  min-height: 80px !important;
}
.footerLinks {
  gap: 20px;
  font-size: 12px;
  padding-right: 2vw;
  font-family: 'Poppins', sans-serif;
}

.copyrightContainer {
  margin-left: 5vw;
}
.copyRightSeparator {
  font-weight: 300;
}
.copyRightText {
  font-size: 15px;
}
@media only screen and (max-width: 920px) {
  .footer {
    min-height: 80px;
    height: fit-content;
  }
  .footerLinks {
    flex-wrap: wrap;
  }
  .copyRightText {
    white-space: pre-line;
  }
}
@media only screen and (max-width: 875px) {
  .copyRightSeparator {
    display: none;
  }
}
.footer {
  min-height: 80px !important;

  bottom: 0;
  margin-top: auto;
}
.container {
  min-height: 100vh !important;
  overflow-x: auto;
  overflow-y: hidden !important;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
