footer {
  background-color: var(--footer);
  color: var(--background);
  position: relative;
  bottom: 0;
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 150px;
}

footer ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
}

footer ul img {
  height: 30px;
  margin: 10px;
  transition: transform 0.3s;
  cursor: pointer;
}

footer ul .logoWhite {
  height: 50px;
  margin-bottom: 0;
  cursor: default;
}

footer p {
  margin: 5px 0;
  padding: 10px;
  text-align: center;
}

.tagline {
  color: var(--background);
  font-family: 'Playwrite DK Loopet', cursive;
  font-weight: 400;
  width: 270px;
}

footer ul .social-icons {
  display: flex;
  gap: 20px;
  padding-top: 20px;
}

footer ul .social-icons img {
  width: 25px;
  height: 25px;
}

footer ul .social-icons img:hover {
  transform: scale(1.5);
}

footer p:last-child {
  margin-top: 20px;
  font-size: 0.9em;
}
