body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f44336;
  touch-action: none;
}

#colorPickerContainer {
  position: absolute;
  top: 20pt;
  right: 20pt;
}

#colorPicker {
  border-radius: 50%;
  width: 28pt;
  height: 28pt;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

#colorDisplay {
  width: 20pt;
  height: 20pt;
  background: #f44336;
  border-radius: 50%;
  border: 4pt solid white;
}

#menuButton {
  z-index: 110;
  position: absolute;
  top: 20pt;
  left: 20pt;
  width: 28pt;
  height: 28pt;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menuButton.close .bar:nth-child(1) {
  transform: translateY(6pt) rotate(45deg);
}
#menuButton.close .bar:nth-child(2) {
  opacity: 0;
}
#menuButton.close .bar:nth-child(3) {
  transform: translateY(-6pt) rotate(-45deg);
}

.bar {
  width: 20pt;
  height: 2pt;
  z-index: 110;
  background-color: #ffffff;
  margin: 2pt 0;
  border-radius: 2pt;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

#sideMenu {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  padding-top: 80px;
  z-index: 100;
  background-color: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

#sideMenu li {
  list-style-type: none;
  height: 56px;
  margin: 8px 0;
  padding-left: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

#sideMenu.open {
  transform: translateX(0);
}

#shakesWrap {
  padding: 0 25px;
}
#shakeCount {
  margin: 5px 0;
}
#shakeCountTitle,
#shakeCountNum {
  display: block;
  margin-left: 5px;
}
#shakeCountNum {
  font-size: 25px;
  font-weight: 700;
}

#twitterShare {
  display: block;
  width: 100%;
  line-height: 40px;
  text-decoration: none;
  border-radius: 40px;
  background-color: #1da1f2;
  color: #fff;
  font-weight: 500;
  text-align: center;
  transform: scale(1);
  transition: ease 0.5s;
  font-size: 18px;
}

#twitterShare:hover {
  transform: scale(0.9);
  transition: ease 0.5s;
}

#counterReset,
#colorsReset {
  display: block !important;
  width: calc(100% - 20px);
  line-height: 20px;
  text-decoration: none;
  border-radius: 10px;
  background-color: #dbdbdb;
  color: #000;
  font-weight: 500;
  text-align: center;
  padding: 5px 0;
  margin: 0 auto;
  margin-top: 8px;
}
