html {
  height: 100%;
  display: -webkit-box;
  display: flex;
}

body {
  position: relative;
  margin: auto;
}

.apple {
  position: relative;
  width: 5vw;
  height: 5vw;
  border-radius: 50%;
  background: tomato;
  box-shadow: inset -5px -5px 0px 4px rgba(0, 0, 0, 0.1);
  opacity: 1;
}
.apple:before, .apple:after {
  content: '';
  position: absolute;
  top: 0%;
}
.apple:before {
  width: 30%;
  height: 35%;
  left: 40%;
  background: #2BA265;
  border-radius: 4vw 8vw 4vw 8vw;
  -webkit-transform: translate(-50%, -70%);
          transform: translate(-50%, -70%);
}
.apple:after {
  width: 10%;
  height: 25%;
  left: 50%;
  background: #1B1D18;
  border-radius: 10%;
  -webkit-transform: translate(-50%, -60%);
          transform: translate(-50%, -60%);
}

.tree {
  position: absolute;
  top: 0;
  left: 0;
  width: 20vw;
  height: 36vw;
  -webkit-transform: translate(-70%, -20%);
          transform: translate(-70%, -20%);
}
.tree__top {
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  box-shadow: inset -5px -5px 0px 4px rgba(0, 0, 0, 0.2);
  background: #238A56;
}
.tree__trunk {
  position: absolute;
  bottom: 0;
  left: 40%;
  width: 20%;
  height: 80%;
  background: #1B1D18;
  border-radius: 1vw;
  z-index: -1;
}

.playback-rate {
  font-family: Avenir, Arial Rounded MT Bold, Helvetica Neue, sans serif;
  position: absolute;
  bottom: 0;
  left: 0;
  text-shadow: 1px 0px 12px rgba(255, 255, 255, 0.7);
}