@import url('https://fonts.googleapis.com/css2?family=Mountains+of+Christmas:wght@400;700&display=swap');

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  background: #112055;
  position: relative;
}
svg {
  max-height: 60vh;
  overflow:visible;
  object-fit: contain;
  opacity: 35%;
}
path {
  fill: #379157;
  stroke: #379157;
  stroke-width: .2;
  transform: scale(0);
  transform-origin: 50% 50%;
  animation: star 8s ease-in-out infinite;
  animation-delay: calc( var(--no) * .025s );
  transform-box: fill-box;
}
@keyframes star {
  0% {
    transform: scale(0);
    animation-timing-function: cubic-bezier(.74,1.72,.57,1.01)
  }
  10% {
    transform: scale(1);
  }
  65% {
    transform: translateY(0px) scale(1);
  }
  75% {
    transform: translateY(50px) scale(0);
  }
  100% {
    transform: translateY( 0px ) scale(0);
  }
}

body:after {
  content: "made with love and care by Zach & Riyah";
  color: #fff;
  font-family: sans-serif;
  position: absolute;
  bottom: 1vh;
  right: 1vw;
}

.overlay-text {
  position: absolute; /* Positions the text over the SVG */
  /* Center the text within the container */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  
  /* Ensure text is above the SVG */
  z-index: 10;

  /* Add styling for visibility and appearance */
  color: white;
  font-size: 36px;
  

  font-family: "Mountains of Christmas", serif;
  font-weight: 400;
  font-style: normal;
}

.center{
  text-align: center;
  font-weight: bold;
}

.left{
  text-align: center;
}

a{
  color: white;
  text-decoration: none;
  
}

a:hover{
    color: red;
    text-decoration: none;
    
}
