.animated-button {
  display: inline-block;
  padding: 16px 32px;
  color: black;
  background-color: white;
  border: 2px solid black;
  border-radius: 50vh;
  font-size: 18px;
  transition: all 0.3s;

  &:hover {
    color: white;
    background-color: black;
    text-decoration: none;
  }
}

footer {
  display: flex;
  flex-direction: column;
  color: white;

  .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px;
    background-color: #5e5e5e;
    text-align: center;

    > * {
      color: inherit;
      font-size: 24px;
    }
  }

  .copyright {
    padding: 16px 32px;
    background-color: black;
    font-size: 13px;
  }
}
