.button-round {
  min-width: 100px;
  align-items: center;
  justify-content: center;
  background-color: #13d07c;
  border: 2px solid #13d07c;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  text-transform: none;
  font-size: 15px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  i {
    margin-right: 10px;
    font-weight: 900;
  }
  &:hover {
    text-decoration: none;
    background-color: #fff;
    color: #13d07c;
  }
  &.button-invert {
    background-color: #fff;
    color: #13d07c;
    &:hover {
    background-color: #13d07c;
    color: #fff;
  }
  }
}

a:hover {
  text-decoration: none;
}
