.navbar-brand::after {
  content: " 🎄";
  font-size: 24px;
}

#footer::after {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 50px;
  background: url('/img/snow_c_2.png') no-repeat center center;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 1024px) {
  #footer::after {
    width: 400px;
    top: -40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  #footer::after {
    width: 350px;
    top: -35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  #footer::after {
    width: 320px;
    top: -32px;
    height: 32px;
  }
  
  .navbar-brand::after {
    font-size: 22px;
  }
}