body {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: var(--bg);
    background-image: url(bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.menu {
    width: 300px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.menu-wrapper {
  position: absolute;
  left: 50%;
  bottom: 10px;
}
.menu-toggle-button, .menu-item-bounce, .menu-item-button {
    background: #a7d5e4;
    border-radius: 50%;
    width: 160px;
    margin-left: -80px;
    margin-top: -80px;
    height: 160px;
    color: #297b30;
    border: none;
    outline: none;
}
.menu-toggle-button {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.menu-toggle-icon {
    font-size: 71px;
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    height: 160px;
    line-height: 170px;
}
.menu-items {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.menu-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.menu-item-bounce {
  position: absolute;
  top: 0;
  left: 0;
}
.menu-item-button {
    width: 85px;
    height: 85px;
    margin-left: -50px;
    margin-top: -20px;
    position: absolute;
    top: 0;
    left: 0;
    color: #AD4C4C;
}
.menu-item-button .fa {
    font-size: 2.5rem;
    color: #297b30;
}
.menu-item-button .fa-camera {
  transform: rotate(182deg);
}
.menu-item-button .fa-cloud {
  transform: rotate(-120deg);
}
.menu-item-button .fa-pdf {
  transform: rotate(175deg);
}
.menu-item-button .fa-link {
  transform: rotate(120deg);
}
.menu-item-button .fa-pie-chart {
  transform: rotate(120deg);
}

