footer {
  width: 100%;
  height: 50px;
  background-color: rgb(61, 68, 81);
  color: white;
  font-family: "YAD7QhG2T6o-0";
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

#copyright {
  grid-column: 1;
  grid-row: 1;
  line-height: 50px;
  margin-left: 20px;
}

#legal {
  grid-column: 2;
  grid-row: 1;
  line-height: 50px;
  text-align: center;
}

#social {
  grid-column: 3;
  grid-row: 1;
  text-align: right;
  margin-right: 20px;
}

#social svg {
  width: 30px;
  height: 30px;
  margin-top: 10px;
  fill: white;
}

#social svg:hover {
  fill: #bbbbbb;
}

@media (max-width: 648px) {
  footer {
    height: 150px;
    display: block;
  }

  #copyright {
    font-size: 300%;
    text-align: center;
    margin-left: 0;
  }

  #legal {
    font-size: 300%;
  }

  #social {
    text-align: center;
    margin-right: 0;
  }
}
