.footer {
  background-color: var(--black);
  height: 27rem;
  padding: 4rem 0;
}

.footer>div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer>div p {
  color: var(--white);
  text-align: center;
  display: flex;
  justify-content: center;
}

.footer>div p img {
  margin-right: .5rem;
}

.footer>div p:first-child {
  font-weight: bold;
}

.footer-logo {
  width: 238px;
  height: 22px;
  align-self: center;
}

.footer>div>p>a {
  color: #fff;
}

.footer>div>p>a:hover {
  color: var(--yellow);
}

@media screen and (min-width:1100px) {
  .footer {
    display: none;
  }
}