@font-face {
    font-family: JollyGood;
    src: url(../fonts/JollyGood-Sans.otf);
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: JollyGood, sans-serif;
    background-color: #B9EFE1;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.container {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    display: flex;
    height: 100%;
    width: 100%;
}

header {
    text-align: center;
}

header h1 {
    font-size: 2rem;
}

.scene {
    position: relative;
    height: 500px;
    width: 100%;
}

svg {
    fill-rule: evenodd;
    clip-rule: evenodd;
    stroke-linejoin: round;
    stroke-miterlimit: 2;
}

#tree {
    left: calc(50% - 125px);
    position: absolute;
    width: 250px;
    bottom: 50px;
}


.draggable {
    position: absolute;
}

.bauble {
    width: 20px;
}

.star {
    width: 30px;
}

.bauble:nth-of-type(1) {
    bottom: 0;
}