* {
  font-family: serif;
}

body {
  margin: 0;
}

main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(lavender, darkslategray);
  /* background-color: black; */
}

main * {
  position: absolute;
}

.cig {
  width: 5%;
  height: 50%;
  top: 27%;
  right: 10%;
  background-image: linear-gradient(90deg, gray, white);
  box-shadow: -8px 8px 70px white;
  outline: 1px solid;
}

.cig .butt {
  width: 100%;
  height: 20%;
  bottom: 0;
  background-image: linear-gradient(90deg, saddlebrown, goldenrod);
}

.cig .smoke {
  width: 100%;
  height: 15%;
  top: -8vh;
  border-radius: 100%;
  background-color: whitesmoke;
  filter: blur(8px);
}

.cig .smoke div{
  width: 140%;
  height: 100%;
  transform: translate(-35%, -50%);
  border-radius: 100%;
  background-color: whitesmoke;
  /* filter: blur(5px); */
}

.bar {
  width: 25%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  background-color: crimson;
  outline: 1px solid;
  overflow-y: auto;
}

.bar * {
  position: relative;
}

.bar .gm {
  width: 90%;
  margin-top: 2vh;
  padding: 10% 0% 10% 0%;
  background-image: radial-gradient(white 20%, lime);
  font-size: 10vw;
  color: black;
  text-align: center;
  border-radius: 100%;
  box-shadow: 0px 8px 20px white, inset 3px -3px 20px cyan;
}

.bar .nav {
  /* outline: 1px solid; */
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 10vh;
  width: 90%;
}

.bar button:last-child {
  /* outline: 1px solid; */
  background-image: linear-gradient(white, lime);
}

.bar button {
  font-size: 3vh;
  width: 100%;
  color: white;
  text-shadow: -2px 2px 5px white;
  padding: 4% 8% 4% 8%;
  background-image: linear-gradient(white, blue);
  box-shadow: inset 0 -5px 20px black, inset 0 5px 20px white, -3px 3px 15px white;
  border: 0px;
  cursor: pointer;
}

button:active {
  padding: 4.2% 8% 3.8% 8%;
  text-shadow: -2px -2px 5px white;
  box-shadow: inset 0 5px 20px black, inset 0 -5px 20px white, -3px 3px 15px white;
}

.eyes {
  top: 20%;
  left: 30%;
  width: 30vh;
  height: 30vh;
}

.left,
.right {
  width: 48%;
  height: 100%;
  background-color: white;
  border-radius: 100%;
  outline: 1px solid black;
  overflow: hidden;
  box-shadow: -8px 8px 70px white, inset 10px -3px 20px red;
}

.right {
  right: 0;
}

.left div,
.right div {
  bottom: 10%;
  right: 5%;
  width: 60%;
  height: 60%;
  background-color: black;
  border-radius: 100%;
  border: 1px solid black;
  overflow: hidden;
}

.left .ball .shine,
.right .ball .shine {
  top: 15%;
  right: 15%;
  width: 50%;
  height: 50%;
  background-color: white;
  box-shadow: -4px 7px;
  z-index: 5;
}

.left .ball .shine2,
.right .ball .shine2 {
  top: 60%;
  left: 15%;
  width: 10%;
  height: 10%;
  background-color: white;
  z-index: 5;
}

.left .ball .eyecolor,
.right .ball .eyecolor {
  top: 60%;
  right: -5%;
  width: 100%;
  height: 40%;
  background-color: pink;
}

.pill {
  font-size: 4vh;
  position: absolute;
  bottom: 15%;
  right: 30vw;
  color: white;
  text-shadow: -2px 2px 5px white;
  padding: 2% 4% 2% 4%;
  background-image: linear-gradient(white, pink);
  box-shadow: inset 0 -5px 20px hotpink, inset 0 5px 20px white, -8px 8px 15px white;
  border: 0px;
  border-radius: 9999px;
  cursor: pointer;
}

.pill:active {
  /* color: cyan; */
  padding: 2.2% 4% 1.8% 4%;
  text-shadow: -2px -2px 5px white;
  box-shadow: inset 0 5px 20px hotpink, inset 0 -5px 20px white, -8px 8px 15px white;
}
