.footer {
  min-height: 500px;
  width: auto;
  background-color: black;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 30px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 30px;
  border-radius: 20px;
}

.footer-headlines {
  color: white;
  font-size: 18px;
  text-align: center;
}

.footer-logo {
  filter: invert(1);
  max-width: 150px;
  position: absolute;
  right: 20px;
  bottom: 60px;
}

.footer-info {
  position: absolute;
  right: 20px;
  bottom: 10px;
  color: white;
  font-family: "googlesans";
  font-size: 15px;
}

.admin-footer-link{
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: white;
  font-family: "googlesans";
}

.footer-sections {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 100px;
}

.overview {
  height: auto;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: "googlesans";
  flex-direction: column;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
}

.linktobtn {
  background-color: transparent;
  border: none;
  color: white;
  font-family: "googlesans";
  margin-top: 5px;
}

.linktobtn:hover {
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .overview {
    width: 200px;
  }
  .footer-sections {
    flex-direction: column;
  }

  .footer-sections {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .footer-logo {
    position: relative;
    bottom: 0;
    left: 0;
  }

  .footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: 100px;
  }
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column-reverse;
    gap: 0;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .footer-sections{
    gap: 10px;
  }

  .footer-info {
    position: relative;
    bottom: 10px;
    left: 0;
  }

  .footer-logo {
    margin-bottom: 10px;
  }

  .admin-footer-link{
    left: 5px;
    bottom: 5px;
    font-size: 15px;
  }
}