footer {
  width: 100%;
  background-color: #081024;
  color: white;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-evenly;
}

.socialMediaIcon {
  width: 25px;
  cursor: pointer;
  margin: 0 15px;
}
.copyContainer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.copy {
  text-align: center;
  width: 90%;
  color: white;
}

@media (max-width: 767px) {
  .footer {
    flex-direction: column;
  }
  .socialMediaContainer {
    margin: 30px 0;
  }
  .socialMediaIcon {
    width: 20px;
  }
  .copyContainer {
    margin: 0 0 20px 0;
  }
}
