.footer {
  color: rgb(255, 255, 255);
  background: #333333;
  padding: 24px;
  font-size: 16px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo img {
  height: 50px;
}

.footer-logo {
  display: block;
}

.footer-copywright {
  text-align: center;
  flex: 1;
}

.footer-privacy a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.footer-privacy a:hover {
  text-decoration: underline;
}

.container-logo {
  margin-bottom: 24px;
}

.container-logo img {
  height: 200px;
  display: block;
}

@media (max-width: 968px) {
  .footer-logo {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-privacy {
    margin-top: 1rem;
  }

  .footer-privacy a {
    display: block;
    margin-top: 0.5rem;
  }
}
