﻿.footer {
  color: rgb(var(--grey-10-rgb));
  line-height: 1.9rem;
}

.footer-container {
  border-top: 1px solid transparent;
  border-image: linear-gradient(
      to right,
      rgb(var(--primary-50-rgb)),
      rgb(var(--primary-100-rgb))
    )
    1;
}

.footer-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 6rem;
}

.footer-media img {
  width: 100%;
  width: 200px;
  height: auto;
}

#copyright {
  order: 3;
}

#microsoft-logo {
  order: 2;
  width: 265px;
}

@media (min-width: 992px) {
  .footer-media {
    flex-direction: row;
    justify-content: space-between;
  }

  #copyright {
    order: 2;
  }

  #microsoft-logo {
    order: 3;
  }
}
