.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: black;
  color: white;
  font-family: Regular;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.copy1{
  font-family: Bold;
}

.copy2{
  font-family: Regular;
}

.footer-left, .footer-center, .footer-right {
  width: 100%;
  margin: 10px 0;
}

.footer-center {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer-center .icon img {
  width: 30px;
  height: 30px;
}

.logoapp {
  width: 110px;
}

@media (min-width: 768px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-left {
    flex: 1;
    margin-left: 40px;
  }

  .footer-center {
    flex: 1;
  }

  .footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 80px;
  }
}
