footer {
  margin-top: 100px;
  background-color: black;
  border-top: 1px solid blue;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 150px;
}

.footer__contact {
  font-size: 36px;
  margin-left: 200px;
}

.footer__navIcons {
  display: flex;
  margin-left: 100px;
  align-self: start;
  height: 100%;
}

.footer__icon > a {
  display: flex;
  justify-content: center;
  height: 30%;
  width: 150px;
  margin-right: 40px;
  border: 1px solid blue;
  border-top: none;
  padding: 10px;
  font-size: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  transition: 0.5s all ease;
  font-weight: bold;
}

.footer__icon > a:hover {
  height: 80%;
  background-color: #333;
  cursor: pointer;
}

@media only screen and (max-width: 1500px) {
  footer {
    flex-direction: column;
    align-items: center;
    height: 500px;
  }

  .footer__contact {
    margin-left: 0;
    margin-top: 20px;
  }

  .footer__navIcons {
    margin: 0;
    padding: 0;
    margin-top: 20px;
    align-self: auto;
    flex-direction: column;
    align-items: flex-end;
  }

  .footer__icon > a {
    margin-right: 0;
    margin-top: 15px;
    border-radius: 20px;
    border: 1px solid blue;
  }
}
