@font-face {
  font-family: 'Bebas Neue';
  src: url('fonts/bebasneue_bold-webfont.eot');
  src: url('fonts/bebasneue_bold-webfont-iefix.eot') format('embedded-opentype'),
       url('fonts/bebasneue_bold-webfont.woff2') format('woff2'),
       url('fonts/bebasneue_bold-webfont.woff') format('woff'),
       url('fonts/bebasneue_bold-webfont.ttf') format('truetype'),
       url('fonts/bebasneue_bold-webfont.svg') format('svg');
  font-weight: 700;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background: url('images/background.jpg') fixed center #000;
  background-size: cover;
  font-family: sans-serif;
  min-width: 340px;
}

#header {
  height: 216px;
  width: 1100px;
  margin: 0 auto -120px;
  padding: 20px 0 60px;
  background: rgba(0, 0, 0, 0) url("images/arrows.png") no-repeat scroll center bottom 120px;
  background-size: 40%;
}

#footer {
  width: 1000px;
  margin: 0 auto;
  padding: 10px;
  background: #00b0b2;
  border-radius: 25px 25px 0 0;
  text-align: center;
  color: white;
  font-family: "Bebas Neue";
  font-size: 2em;
  font-weight: 700;
}

#presented-by {
  float: left;
  width: 30%;
  margin: 30px 20px 0 0;
}

#sponsor-logo {
  float: right;
  background: #00b0b2;
  padding: 10px;
  border-radius: 20px 0 20px 0;
  z-index: 1000;
  max-width: 250px;
}

#sponsor-logo img {
  width: 100%;
}

#presents, h1 {
  color: white;
  text-shadow:
     3px  3px 0 #000,
    -2px -2px 0 #000,  
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
  font-family: "Bebas Neue";
  font-size: 4em;
  font-weight: 700;
  padding: 30px 30px 30px 0;
}

#presents {
  display: inline;
  vertical-align: center;
}

#logo {
  width: 40%;
  max-width: 500px;
  display: inline-block;
}

#logo img {
  width: 100%;
}

div#main {
  background: white;
  min-height: 700px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto 20px;
  border-radius: 40px 0 40px 0;
}

div#content {
  padding: 130px 20px 20px;
}

div.lineup-container {
  border-bottom: 1px solid #afafaf;
  padding-bottom: 30px;
}

ul#lineup {
  margin-left: -3px;
  line-height: 3.2em;
  text-align: center;
}

ul#lineup li {
  font-family: "Bebas Neue";
  font-size: 3em;
  font-weight: 700;
  color: black;
  list-style: none;
  display: inline-block;
  padding: 0 7px;
}

ul#lineup li:nth-child(even) {
  color: #00b0b2;
}

.sold-out {
  float: right;
  margin-top: 50px;
  padding: 6px;
  border: 2px solid red;
  color: red;
  font-family: "Bebas Neue";
  font-size: 2em;
  font-weight: 700;
}

@media screen and (max-width: 1080px) {
  #header {
    padding: 12px 0;
    height: inherit;
    width: 100%;
  }
  #footer {
    width: 100%;
    padding: 0;
    border-radius: 0;
  }
}

@media screen and (max-width: 600px) {
  div#main {
    width: 100%;
    border-radius: 0;
    margin-bottom: 0;
  }
  #presented-by {
    margin-right: 10px;
  }
  h1#presents {
    display: none;
  }
  #logo {
    width: 65%;
  }
  #sponsor-logo {
    padding: 2px;
    border-radius: 10px 0 10px 0;
  }
}

