#footer{
  display: flex;
  justify-content: center;
  min-height: 200px;
  background-color: black;
  margin-top: 3rem;
  padding: 3rem;
  flex-wrap: wrap;
  gap: 100px;
}

#footer *{
  color: white;
  font-size: 2.25rem;
}

#footer-top{
  display: flex;
  flex-direction: column;
}

#footer-bottom{
  display: flex;
  justify-content: space-around;
}

@media screen and (max-width: 1024px) {
  #footer{
    gap: 30px;
  }
  #footer *{
    font-size: 1.75rem;
  }
  #footer-top{
    width: 30%;
  }
}

@media screen and (max-width: 414px) {
  #footer{
    flex-direction: column;
    gap: 30px;
  }
  #footer-top{
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}