html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  color: azure;
  background-color: #34495e;
}

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

#tree-container {
  position: relative;
  width: 32rem;
  margin: auto;
  margin-top: 2rem;
}

#tree {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

#star {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  cursor: pointer;
  z-index: 5;
}

#decorations {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

.ornament {
  position: absolute;
  height: 4rem;
  z-index: 10;
}

.important-text {
  color: #5bc0de;
}