footer {
  position: relative;
  top: 90px;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 300px;
  border-top: 5px solid #e8e40c;
  background-color: #587AE6;
  padding: 0 100px 0 100px;
}

footer .logo {
  width: 300px;
}

footer .quick-links, footer .contact-info {
  text-align: center;
}

footer .quick-links h2, footer .contact-info h2 {
  display: block;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

footer .quick-links ul {
  text-align: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

footer .quick-links ul li a {
  text-decoration: none;
  color: white;
}

footer .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

footer .contact-info .email {
  display: block;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

footer .contact-info .email a {
  text-decoration: none;
  color: white;
}

@media screen and (max-width: 900px) {
  footer {
    justify-content: space-around;
  }

  footer .logo {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  footer {
  	flex-direction: column;
  	height: 360px;
  }

  footer .quick-links, footer .contact-info {
  	margin-top: 20px;
  	margin-bottom: 0;
  }
}
