.footer {
  border-top: 0.1px solid var(--first-color-alt);
  background-color: var(--first-color);
  padding: 3rem 0 4.5rem 2rem;
  z-index: 60;
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1rem 1rem;
  border-left: 0.1px dashed var(--first-color-alt);
  padding-left: 1rem;
}

.footer__copy-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 80%;
}

.footer__youtube {
  width: 40px;
  height: 40px;
  filter: saturate(75%);
  transition: transform 0.5s;
}

.footer__youtube:hover {
  transform: scale(1.2);
}

.footer__copy {
  font-size: var(--smaller-font-size);
  align-items: left;
  text-align: left;
}

.footer__copy a:hover {
  color: orangered;
  cursor: pointer;
}