.footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  background-color: var(--footer-bg-color);
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: var(--information-color);
}

.round {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: var(--main-color);
}

.developer {
  color: var(--information-color);
}

.developer-mail {
  cursor: pointer;
  text-decoration: none;
  color: var(--nav-font-color);
}

@media (min-width: 769px) {
  .footer {
    flex-direction: row;
    justify-content: space-around;
    padding: 4rem;
  }

  .footer-logo {
    width: 25%;
  }

  .developer-mail {
    width: 30%;
    text-align: center;
  }

  .developer {
    width: 25%;
    text-align: center;
  }
}
