// alert links might be styled the same color as the background
.alert{
  a{
    color: inherit;
    text-decoration: underline;
    &:hover{
      color: inherit;
      text-decoration: underline;
      opacity: 0.9;
    }
  }

}