body {
  background-color: #fbf2e9;
  color: #3d3036;
  font-family: TimesNewNormal;
}

@font-face {
    font-family: "TimesNewNormal";
    src: url("fonts/TimesNewNormal.ttf");
}

@font-face {
    font-family: "LUNERY";
    src: url("fonts/LUNERY.ttf");
}

@font-face {
    font-family: "Neothic";
    src: url("fonts/Neothic.ttf");
}

h2{
  color: #ffa8c9;
  padding: 0px;
  margin: 10px;
  font-size: 30px;
  font-family: Neothic; /*cool*/
}

.cat{
  position: relative;
  pointer-events: none; 
  width: 30vw;
}

.lesles{
  position: relative;
  top: 20vh;
  right: 0vh;

  width: 20vw;
}

.santa{
  position: absolute;
  top: 18vh;
  right: 0vh;

  width: 90vw;

  pointer-events: none; 
  z-index: 10;
}

hr{
  background-color: #3d3036;
  margin: 20px;
  height: 1px;
}
.metadata{
  font-size: 20px;
  margin: 2px;
  text-align: left;
}

.center{
  text-align: center;
}
.space{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;

    letter-spacing: 0.15em;

    list-style: none;
    margin: 0;
    padding: 1rem 0;
}
.space li {
    flex: 1;
    text-align: center;
}

.space p{    
  padding: 0px;
  margin: 2px; 
  font-size: 20px;
  text-align: center;
}


.marquee {
  font-family: LUNERY;
  font-size: 100px;
  padding: 0px;
  margin: 0px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;

}
.marquee-track {
  padding: 0px;
    display: inline-flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.marquee-track span {
    font-size: 8rem;
    padding-right: 0rem;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
