body{  
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;  
    background-color: #eff1f5;
    color: #4c4f69;  
}  
  
#header{  
    text-align: center;
    background-color: #ccd0da;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem;
}

#header h1 {
    color: #8839ef;
}

#header h2 {
    color: #5c5f77;
}

#footer{  
    text-align: center;  
}
#tree-container {
    max-width: 20rem;
    display: flex;
    margin: auto;
    margin-right: auto;
    margin-left: 30rem;
}

#tree {
    width: 50rem;
    height: 30rem;
    margin-top: 4rem;
    z-index: 0;
}

#star {
    position: relative;
    margin: 0 -30rem;
    font-size: 5rem;
    z-index: 5;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

#star:hover {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 0 10px #df8e1d);
}

#decorations {
    display: inline-block;
}

.ornament {
    height: 2rem;
    position: relative;
    z-index: 10;
}
