
/* footer */
footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 30vh;
}

footer p {
  font-size: small;
  margin: 5px 0;
}

.footer-logo-container {
  margin: 20px 0;
}

.footer-contents {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-social-media p {
  text-align: center;
}

.footer-contact, 
.footer-social-media {
  margin: 0 45px;
}

.social-media-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.social-media-icons img {
  width: 25px;
  padding: 5px;
  display: block;
}

.footer-copyright {
  margin: 20px 0;
}

.footer-copyright p {
  color: rgb(206, 205, 205);
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-contents {
    flex-direction: column-reverse;
  }

  .footer-social-media {
    margin-bottom: 20px;
  }
}