/* hover button */
.button {
    display: inline-block;
    border-radius: 4px;
    background-color: #1d691d;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 10px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
  }

  
  
  .button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .button:hover img {
    padding-right: 25px;
    
  }
  
  .button:hover img:after {
    opacity: 1;
    right: 0;
    
  }

  /* NAVBAR BUTTONS */
  a.button-nav {
    position: relative;
    cursor: pointer;
    background-color: transparent;
    border: 2px;
    border-color: aqua;
    text-shadow: 0px 0px 40px rgb(68, 189, 236);
    
  }

  .button-nav :hover{
    
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    text-shadow: 0px 0px 10px rgb(252, 219, 73), 0px 0px 20px rgb(218, 215, 67), 0px 0px 30px rgb(221, 210, 53), 0px 0px 40px rgb(221, 210, 53);
    
}
  
  a.button-nav img {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    transition: 0.5s;
    width: 30px;
    height: 25px;
    bottom: 1rem;
    left: 30%;
    
    padding: 2px;
    border-radius: 200px;
    opacity: 0;
  }
  
  a.button-nav img:after {
    content: '\00bb';
    position: absolute;
    opacity: 1;
    
    
    top: 0;
    bottom: 10%;
    transition: 0.1s;
    
  }
  
  a.button-nav:hover img {
    margin-right: 0%;
    bottom: -1rem;
    opacity: 1;
    box-shadow: 0px 0px 40px rgb(68, 189, 236);
    
  }
  
  a.button-nav:hover img:after {
    opacity: 1;
    bottom: 0;
    width: 25px;
    height: 20px;
    
  }

  /* .glow-gem {
    width: 50px;
    height: 20px;
    box-shadow: 0px 0px 20px rgb(68, 189, 236), 0px 0px 20px rgb(68, 189, 236), inset 0px 0px 8px rgb(77, 176, 241);
  } */

  .glow-gem {
    position:absolute;
    width: 5px;
    height: 8px;
    box-shadow: 0px 0px 20px rgb(68, 189, 236), 0px 0px 20px rgb(68, 189, 236), inset 0px 0px 8px rgb(77, 176, 241);
  }

  /* .glow-gem  {
    width: 50px;
    height: 20px;
    box-shadow: 0px 0px 20px rgb(68, 189, 236), 0px 0px 20px rgb(68, 189, 236), inset 0px 0px 8px rgb(77, 176, 241);
  } */