/* homepage.css */
/* CSS file created for formatting of footer of home page index.html */
.mission {
  justify-content: space-around;
}
.mission-label {
  max-width: 24em;
}
.mission-text {
  text-align: center;
}
.mission-image {
  max-width: min(400px,100%);
}
.footer-links {
  display: flex;
  flex-direction: column;
}
.footer-group {
  padding: 10px 0;
  display: flex;
  width: 100%;
  justify-content: space-around;
}
.footer-cell {
  width: 40%;
  text-align: center;
}
.amazon {
  font-weight: 900;
  color: var(--highlight-color);
}
.amazon p {
  margin: 0;
}
.amazon-image {
  max-width: 120px;
  margin: 0.5em 0;
}
.avalanche {
  width: 40%;
}
.avalanche a {
  font-weight: bold;
  text-decoration: none;
  color: rgb(204, 236, 247);
}
.avalanche img {
  max-width: 120px;
}
.facebook {
  width: 46%;
}
.facebook img {
  max-width: 140px;
}
.google {
  width: 50%;
  font-weight: bold;
  font-size: 12px;
  color: #FFFFFF;
}
/* modifications for larger screens */
@media (min-width: 800px) {
  .footer-links {
    flex-direction: row;
  }
}
