/* Global Layout Set-up */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  color: white;
  background: #2d2b30;
}

/* Link Styles */

a {
  text-decoration: none;
  color: #999;
}

a:hover {
  color: #999;
}


legend {
  display: none;
}

/* Section Styles */

.main-nav {
  width: 100%;
  background: rgba(45, 43, 48, 0.8);
  min-height: 30px;
  padding: 10px;
  position: fixed;
  text-align: center;
}

.nav {
  display: flex;
  justify-content: space-around;
  font-weight: 700;
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
}

.nav .name {
  display: block;
  margin-right: auto;
  color: #FF8103;
  letter-spacing: 5px;
  font-size: 25px;
}

.nav li {
  padding: 5px 10px 10px 10px;
  font-size: 25px;
}

.nav a {
  transition: all .5s;
}

.nav a:hover {
  color: #EDA832;
}

header {
  text-align: center;
  background: url('../img/concert02_no_text.jpg') no-repeat top center ;
  background-size: cover;
  overflow: hidden;
  padding-top: 60px;
  height: 350px;
}

.main-header {
  position: relative;
  top: 115px;
  font-size: 60px
}

.secondary-header {
  position: relative;
  top: 80px;
  font-size: 30px;
  color:#EDA832;
}

.name{
  font-weight: 300;
}

.card {
  margin: 30px;
  padding: 20px 40px 40px;
  text-align: left;
  border-top: 4px solid #781125;
  clear: both;
}

.card:hover {
  border-color: #EDA832;
}

.photo{
  display: block;
  width: 200px;
  height: 0%;
  margin: 0 auto;
}

.information {
  width: 100%;
  text-align: center;
}

.buy {
  font-size: 20px;
  color: #EDA832;
}

h1{
  font-size: 2em;
  text-transform: uppercase;
  color: #FF8103;
  margin-top: 10px;
}

/* Footer styles */

footer {
  width: 100%;
  min-height: 30px;
  padding: 20px 0 40px 20px;
}

footer .copyright {
  top: -8px;
  font-size: .75em;
}

footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

footer ul li {
  display: inline-block;
}

footer li::first-line {
  display: none;
}

a.social {
  display: inline-block;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  background-size: 30px 30px;
  opacity: .4;
  transition: all .5s;
}


a.social:hover {
  opacity: 1;
}
.clearfix {
  clear: both;
}

table {
    border-collapse: collapse;
    width: 100%;
}

td, th {
    border: 1px solid #781125;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #781125;
}

fieldset {
    border: 0;
}

/* Styles for larger screens */
@media screen and (min-width: 840px) {

  .flex {
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: flex;
    max-width: 1200px;
    -ms-flex-pack: distribute;
  }

  header {
    min-height: 470px;
  }

  .nav {
    max-width: 1200px;
    padding: 0 30px;
  }


  main {
    padding-top: 20px;
  }

  main p {
    line-height: 1.6em;
  }

  .card{
    margin: 40px auto;
    padding: 20px 40px 40px;
    width: 80%;
    max-width: 1000px;
  }

  .photo{
    width: 30%;
    margin: 20px 30px;
  }

  .information{
    text-align: left;
  }

  footer {
    font-size: 1.3em;
    max-width: 1200px;
    margin: 40px auto;
  }
}

