footer {
  background-color: var(--primary-color);
  padding: 10px 0px;
  text-align: center;
  position: relative;
  color: white;
}

.content h2 {
  font-size: 1.9rem;
  margin-bottom: 0px;
}

.content h2 a {
  text-decoration: none;
  color: white;
}

.content h2 a:hover {
  text-decoration: underline;
}

footer p {
  font-size: 1.2rem;
  margin: 5px 0;
  line-height: 1;
}

footer a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: bold;
}

footer .social-icons {
  margin-top: 20px;
}

footer .social-icons a {
  margin: 0 25px;
  display: inline-block;
}

footer .social-icons a img {
  width: 32px;
  height: 32px;
  vertical-align: middle;
}

footer .social-icons a:hover img {
  transform: scale(1.2);
}

footer .join-us {
  position: absolute;
  right: 150px;
  top: 12px;
  font-weight: bold;
  font-size: 1.5rem;
}

footer .join-us a {
  text-decoration: none;
}

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

footer .copy {
  margin: 10px auto 0 auto;
  font-weight: bold;
  font-size: 15px;
}

@media(max-width:1440px) {
  .content h2 {
    margin-bottom: 10px;
  }

  footer p {
    line-height: 1.5;
  }
}

@media (max-width: 1024px) {
  footer .join-us {
    position: static;
    margin: 10px 0;
    text-align: center;
  }

  footer {
    padding: 10px 0px;
  }

  footer p {
    font-size: 0.9rem;
  }

  footer .copy {
    font-size: 0.9rem;
    font-weight: lighter;
    line-height: .5;
  }
}

@media (max-width: 768px) {
  footer .social-icons {
    margin-top: 10px;
  }

  footer .social-icons a {
    margin: 0 10px;
  }

  footer .content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 10px 0px;
  }

  footer .social-icons a img {
    width: 28px;
    height: 28px;
  }

  footer .content h2 {
    font-size: 1.3rem;
    margin-bottom: 0px;
  }

  footer p {
    font-size: 0.7rem;
  }

  footer .copy {
    font-size: 14px;
  }

  footer .join-us {
    font-size: 1rem;
  }
}