/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.concertbutton {
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  padding: 10px 20px; 
  font-size: 20px;
  font-weight: bold;
  border-radius: 3px;
  transition-duration: 0.8s;
  max-width: 250px;
}

.concertbutton:hover {
  background: rgba(0,0,0,.1) !important;
}

.liveconcertbutton {
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 10px 20px; 
  font-size: 20px;
  font-weight: bold;
  border-radius: 3px;
  transition-duration: 0.8s;
  max-width: 250px;
}

.liveconcertbutton:hover {
  background: rgba(255,255,255,.3) !important;
}
