
.I {
  font-size: 20px;
  font-weight: bold;
  color: #352f2f;
  margin-bottom: 0;
}
/* 
.wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 3em 1em 3em 1em;
  position: relative;
} */

/* .letter-container {
  position: absolute;
  bottom: 0.5em;
} */

.height-fix {
  line-height: 0.55;
}

.margin-fix {
  margin-top: 0;
}

.adjust {
  /*  to align the items with varying line-heights */
  padding-bottom: 0.25em;
  padding-left: 5px;
  
}



@keyframes bounce {
  from {
      transform: translate3d(0, 0, 0);
  }
  to {
      transform: translate3d(0, -15px, 0);
  }
}

.bounce {
  animation: bounce 0.4s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}