.button {
    color: black;
    position: relative;
    text-decoration: none;
    line-height: 280px;
    display: inline-block;
    font-size: 300px;
  }
  #section-1 .button{
    width: 40%;
      cursor: nw-resize;
  }
  #section-2 .button{
  font-family: Eagle Lake;
  cursor: help;
  }

  #section-3 .button{
  font-family: Azeret Mono;
  cursor: progress;
  }

  #section-4 .button{
  font-family: Yatra One;
  cursor: nesw-resize;
  }
  #section-5 .button{
  font-family: ZCOOL QingKe HuangYou;
  font-size: 340px;
   cursor: alias;
  }

  .button:hover {
    color:blue;
    text-decoration: underline 18px;
  }

  #section-5 .button:hover {
  transform: rotateZ(30deg);
  transform: rotateX(70deg);
  }

  .button .tooltiptext {
    font-family: times;
    visibility: hidden;
    width: 120px;
    height: 60px;
    border: 2px solid black;
    background-color: #fff;
    color: black;
    text-align: center;
    font-size:20px;
    border-radius: 6px;
    padding: 10px ;
    width: 120px;
    bottom: 80%;
    left: 50%;
    margin-left: -60px;

    position: absolute;
    z-index: 1;
  }
  .bottom .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
  }
  .button:hover .tooltiptext {
    visibility: visible;
  }
