.termscon a:hover {
      display: inline-block;
      padding: 5px;
      color: #ffffff;
      background: linear-gradient(45deg, #FF0000, #8a1300);
      border: 1px solid #FF0000;
      border-radius: 10px;
      transition: background 0.3s, border 0.3s;
    }


/* CSS code here */
    #button-audit {
      display: inline-block;
      padding: 10px 20px;
      text-align: center;
      text-decoration: none;
      font-size: 16px;
      font-weight: bold;
      color: #ffffff;
      background: linear-gradient(45deg, #FF0000, #8a1300);
      border: 2px solid #FF0000;
      border-radius: 20px;
      transition: background 0.3s, border 0.3s;
    }

    #button-audit:hover {
      background: linear-gradient(45deg, #8a1300, #FF0000);
      border: 2px solid #8a1300;
			color: #FFFFFF;
		  text-decoration: none;
    }