.footer {
  background-color: var(--main-color);
  position: relative;
  bottom: 0;
  width: 100%;
  height: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-content: center;
  gap: 25px;
}

.footerBottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  gap: 10px;
  height: 50px;
  width: 100%;
  cursor: default;
  bottom: 0;
  background-color: var(--main-color);
  margin-bottom: 7.5px;
}

.footerBottom p {
  text-align: center;
  margin: 0;
  color: #fff;
}

.footerBottom b {
  font-weight: 700;
  color: #ccc;
  transition: color 100ms ease-in-out;
}

.footerBottom b:hover {
  color: #fff;
}
