.flex-container-footer {
  background-image: linear-gradient(to right, #00f2ff, #00ccd6);
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.flex-item-footer {
  padding: 2rem;
  font-size: 1rem;
  text-align: center;
}

.container-social-button {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0.7fr 0.3fr;
  grid-template-areas:
    "sb-logo"
    "sb-subtext";
  justify-items: center;
  align-items: center;
}

.item-social-button-logo {
  grid-area: sb-logo;
  padding-top: 1rem;
}

.item-social-button-subtext {
  grid-area: sb-subtext;
  color: var(--white);
  margin-bottom: 1rem;
}

.item-social-button-subtext a {
  color: var(--white)
}

.social-button-logo {
  width: 50px;
  height: auto;
}

@media screen and (min-width: 650px) {
  .social-button-logo {
    width: 70px;
    height: auto;
  }
}

@media screen and (min-width: 1200px) {
  .social-button-logo {
    width: 100px;
    height: auto;
  }
}

footer a {
  color: var(--white);
}

footer a:link {
  text-decoration: none;
}

footer a:visited {
  color: var(--white);
  text-decoration: none;
}

footer a:hover {
  text-decoration: none;
}
