  html {
    scroll-behavior: smooth;
    height: 100%;
    font-family: 'CooperHewittBook';
  }

  body {
    position: relative;
    color: black;
    background-color: rgb(240, 133, 53);
    margin: 0px;
    padding: 0px;
    border: 0px;
    font-size: 20px;
  }

  .body-pattern {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../img/mangoes.png);
    opacity: 10%;
    z-index: -100;
  }

  a {
    text-decoration: none;
    font-size: 20px;
  }

  .tooltip {
    opacity: 1;
    position: relative;
    display: inline-block;
  }

  .tooltip .tooltiptext {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-family: 'Roboto Mono', monospace;
    font-size: 10px;
    visibility: hidden;
    width: 140px;
    height: 22px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: -50%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .tooltip .tooltiptext::after {
    opacity: 1;
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #555 transparent;
  }

  .tooltip:hover .tooltiptext {
    position: absolute;
    visibility: visible;
    opacity: 1;
  }