.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100%;
  background-color: #457b9d;
}

.footer a {
  color: #f1faee;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  padding: 30px;
}

.footer a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 600px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer a {
    padding: 3px 0px 3px 30px;
  }
}
