body{
  margin: 0;
  font-family: "Satisfy", cursive;
  background-image: url("img/backgroundtile.png");
  color: azure;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background-color: #c31f1f;
}

#header, #footer{
  text-align: center;
}

#header h1,
#header h2,
#footer h3{
  margin: 0.25rem 0;
}

#tree-container{
  position: relative;
  width: 20rem;
  max-width: 90vw;
  margin: 2rem auto 1rem;
}

#tree{
  width: 60%;
  display: block;
  margin: 0 auto;
  z-index: 1;
}

#star{
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  z-index: 3;
  cursor: pointer;
  user-select: none;
   -webkit-user-select:none;
  transition: transform 150ms ease, filter 150ms ease;
}

#star:hover{
  transform: translateX(-50%) scale(1.05);
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.7));
}

#decorations{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.ornament{
  position: absolute;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.25));
}

.important-text{
  color:#009b27;
}