body {
  margin: 0;
  padding: 0;
  font-family: "Cormorant", serif;
  color: #000;
  line-height: 1.5;
  box-sizing: border-box;
  font-size: 1.125rem;
}

button {
  padding: 0.5rem 1rem;
  background-color: darkolivegreen;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;

  &:hover {
    background-color: olivedrab;
  }
}

.christmas-tree {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  div {
    display: flex;
    width: 30%;

    :nth-child(1) {
      transform: scale(-1, 1);
    }
  }
  progress {
    border-radius: 0;
    width: 100%;
    height: 2rem;
  }
  progress::-webkit-progress-bar {
    background-color: transparent;
    border-radius: 0;
  }
  progress::-webkit-progress-value {
    background-color: darkolivegreen;
    border-radius: 0;
  }

  .trunk {
    progress::-webkit-progress-value {
      background-color: sienna;
      border-radius: 0;
    }
  }

  .tree-button {
    position: absolute;
    top: 0;
    left: 0;
  }
}

#tree-container {
  width: 100%;
  height: 1000px;
  background-color: beige;
  position: relative;
}
