#info-circle {
    position: fixed;
    bottom: 20px;
    left: 2vw;
    width: 50px;
    height: 50px;
    padding: 12px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    transition: transform 1000ms ease-in;
    background-color: #FFEC60;
 

    z-index: 9999;
}
#info-circle > div {
	font-family: josefin Sans;
	font-weight: 600;
    width: 80px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

body {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.bill {
  position: relative;
  width: 128px;
  height: 64px;
  background-color: #3ac66e;
  image-rendering: pixelated;
  box-shadow: inset 0 0 0 4px #2e9954;
}

.pixels {
  width: 1px;
  height: 1px;
  box-shadow:
    /* Dollar $ sign, very rough pixel style */
    30px 20px #0f0,
    32px 20px #0f0,
    34px 20px #0f0,
    30px 22px #0f0,
    32px 22px #000,
    34px 22px #0f0,
    30px 24px #0f0,
    32px 24px #0f0,
    34px 24px #0f0,

    /* Decorative corners */
    2px 2px #0f0,
    4px 2px #0f0,
    2px 4px #0f0,
    120px 2px #0f0,
    122px 2px #0f0,
    122px 4px #0f0,
    2px 58px #0f0,
    4px 60px #0f0,
    120px 60px #0f0,
    122px 58px #0f0;
}

/* Fire Animation */
.fire {
  position: absolute;
  top: 0;
  right: -4px;
  width: 12px;
  height: 100%;
}

.fire::before, .fire::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: red;
  box-shadow:
    0px 4px orange,
    2px 8px yellow,
    4px 12px red,
    2px 16px orange,
    0px 20px yellow,
    2px 24px red;
  animation: flicker 0.2s infinite alternate;
}

.fire::after {
  left: 4px;
  animation-delay: 0.1s;
}

@keyframes flicker {
  0% {
    transform: translateY(0) scaleY(1);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-2px) scaleY(1.2);
    opacity: 1;
  }
}




