/* Basic styles to ensure images are visible */
body {
    font-family: "DM Sans", sans-serif;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

h1, h2 {
    font-family: "Cause", sans-serif;
}

#tree {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    max-width: 100%;
    max-height: 60vh;
    height: auto;
    z-index: 1;
}

#ornament, .ornament {
    max-width: 80px;
    height: auto;
    display: block;
}

#tree-container {
    text-align: center;
}

#tree-area {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(6, 1fr);
    place-items: center;
    max-width: 80%;
    margin: 0 auto;
}

#header {
    text-align: center;
}

#decorations {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(6, 1fr);
    z-index: 2;
}
#star {
    grid-column: 3;
    grid-row: 1;
    font-size: 2rem;
    z-index: 3;
    cursor: pointer;
    align-self: center;
    justify-self: center;
    margin-top: -5.5rem;
    margin-left: -2.2rem;
}