a.btn-primary {
  display: inline-block;
  background: transparent;
  color: #2980b9;
  border: 2px solid #2980b9;
  border-radius: 6px;
  min-width: 4em;
  max-width: 100%;
  font-size: 100%;
  line-height: 1.8;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 1em;
  transition: all 0.2s;
}
a.btn-primary:visited {
  background: transparent;
  color: #2980b9;
  border: 2px solid #2980b9;
  text-decoration: none;
}
a.btn-primary:active {
  background: #3498db;
  color: #ffffff;
  border: 2px solid #3498db;
  text-decoration: none;
}
a.btn-primary:hover {
  background: #3498db;
  color: #ffffff;
  border: 2px solid #3498db;
  text-decoration: none;
  opacity: 1;
}


