/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

.center {
  display: block;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.footer {
  display: block;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

body {
  background-color: black;
}

.img-wrapper {
  position: relative;
  width: 50%;
  margin: 20px auto;
}

.base-img {
  width: 100%;
  display: block;
}

.overlay-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px; /* adjust size */
}

.footer-gif {
  display: block;
  height: 70px;      /* adjust size */
}


.hiddentooltip:hover .tooltip {
  display:block;
}

    #tooltip {
      position: absolute;
      background: #fff;
      /*width: 20px;*/
      /*height: 20px;*/
      z-index: 5;
      border: solid 3px black;
      padding: 0.2em;
      color: black;
      font-family: 'MV Boli', "times new roman";:
    }